You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
828 B
20 lines
828 B
import discord, os
|
|
|
|
class Extension:
|
|
core = None
|
|
def __init__(self, core):
|
|
self.core = core
|
|
|
|
@core.tree.command(name = "powered", description = "Информация о боте")
|
|
async def powered(
|
|
interaction: discord.Interaction
|
|
):
|
|
await interaction.response.defer(thinking=True)
|
|
return await interaction.followup.send(f"""
|
|
Крутой бот на '/ API' для взаимодействие с сервисами фактов13!
|
|
Создан на основе: https://github.com/Rapptz/discord.py ({discord.__version__})
|
|
Исходник бота: https://git.pblr-nyk.pro/gsd/Facti13.Bot.Discord.V2
|
|
Исходник сервисов: https://git.pblr-nyk.pro/gsd/Facti13.Web.Backend.Java.V2
|
|
|
|
Версия сборки от {self.core.utime2human(int(os.getenv("BUILDDATE", "0")))}
|
|
""", ephemeral=False)
|