Files
QuizBot/cogs/stage.py
2025-04-21 14:34:13 +02:00

17 lines
386 B
Python

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
# command_group: SlashCommandGroup = SlashCommandGroup("stage", "Event stage management")
def setup(bot: PycordBot) -> None:
bot.add_cog(Stage(bot))