implemented general help command and command specific help

This commit is contained in:
2023-05-24 01:19:40 +01:00
parent 9569ad7ace
commit 2cd080bf02
6 changed files with 126 additions and 29 deletions

18
bot.py Normal file
View File

@@ -0,0 +1,18 @@
from discord.ext import commands
import config
from cogs.music.main import music
cogs = [
music
]
class Astro(commands.Bot):
# Once the bot is up and running
async def on_ready(self):
# Set the status
await self.change_presence(activity=config.get_status())
# Setup commands
for cog in cogs:
await self.add_cog(cog(self))