turdbot/cogs/settings.py
Ian Burgess 229669d557 re
2024-06-19 19:06:24 -06:00

17 lines
398 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")
def setup(bot):
bot.add_cog(Settings(bot))