mirror of
https://github.com/Matthww/TuneBot.git
synced 2026-09-21 22:57:48 +00:00
18 lines
489 B
Python
18 lines
489 B
Python
from discord.ext import commands
|
|
|
|
from bot import TuneBot
|
|
#from cogs.settings.interactions import SettingCommands
|
|
from cogs.settings.interactions import SourceCommands
|
|
from context import CustomContext
|
|
from utils.classes import BaseCog
|
|
|
|
|
|
class SettingsCog(BaseCog, name="Settings"):
|
|
pass
|
|
|
|
|
|
async def setup(bot: TuneBot):
|
|
await bot.add_cog(SettingsCog(bot))
|
|
#bot.tree.add_command(SettingCommands(bot), override=True)
|
|
bot.tree.add_command(SourceCommands(bot), override=True)
|