Files
TuneBot/cogs/information/__init__.py
T
2022-11-12 20:37:54 +01:00

17 lines
387 B
Python

import typing
from cogs.information.interactions import InfoCommands
from utils.classes import BaseCog
if typing.TYPE_CHECKING:
from bot import TuneBot
class InformationCog(BaseCog, name="Information"):
pass
async def setup(bot: "TuneBot"):
bot.remove_command("help")
await bot.add_cog(InformationCog(bot))
bot.tree.add_command(InfoCommands(bot), override=True)