turdbot/cogs/settings.py
Ian Burgess 0a544b1dde 5.0
2024-06-22 19:32:58 -06:00

20 lines
432 B
Python

from discord.ext import bridge, commands
from bin.storage import storage
class Settings(commands.Cog):
def __init__(self, bot):
self.bot = bot
@bridge.bridge_group(aliases=["set", "s"], invoke_without_command=True)
async def settings(self, ctx):
await ctx.respond("invalid command, see !help settings for more info")
@settings.command()
def setup(bot):
bot.add_cog(Settings(bot))