17 lines
386 B
Python
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))
|