Files
QuizBot/cogs/stage.py

15 lines
291 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
def setup(bot: PycordBot) -> None:
bot.add_cog(Stage(bot))