This commit is contained in:
Alex D
2023-04-24 17:45:20 +03:00
parent 56c1ebefd3
commit 4731006753
18 changed files with 371 additions and 94 deletions
+20
View File
@@ -0,0 +1,20 @@
import disnake
from disnake.ext import commands
class AboutCommand(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.slash_command()
async def about(self, ctx: disnake.AppCommandInteraction):
embed = disnake.Embed(title='О боте', description='Многофункциональный бот.', color=0x00ff00)
embed.set_author(name='Hyper Tech')
embed.add_field(name='Автор', value='<@795901895666434070> а так же <@662994219794956298>\n')
embed.add_field(name='Версия', value='v1.01.')
embed.add_field(name='Дата выпуска', value='23.04.2023')
await ctx.send(embed=embed)
def setup(bot):
bot.add_cog(AboutCommand(bot))