mirror of
https://github.com/Matthww/TuneBot.git
synced 2026-09-21 22:57:48 +00:00
18 lines
388 B
Python
18 lines
388 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)
|