Added stubs for classes and cogs, performed a cleanup, added more database indexes

This commit is contained in:
2025-04-18 00:48:09 +02:00
parent 82c57a3dd1
commit 691dd1c958
9 changed files with 104 additions and 23 deletions

14
cogs/stage.py Normal file
View File

@@ -0,0 +1,14 @@
from discord.ext.commands import Cog
from classes.pycord_bot import PycordBot
class Stage(Cog):
"""Cog with event stage management commands."""
def __init__(self, bot: PycordBot):
self.bot: PycordBot = bot
def setup(bot: PycordBot) -> None:
bot.add_cog(Stage(bot))