15 lines
285 B
Python
15 lines
285 B
Python
from discord.ext.commands import Cog
|
|
|
|
from classes.pycord_bot import PycordBot
|
|
|
|
|
|
class Event(Cog):
|
|
"""Cog with event management commands."""
|
|
|
|
def __init__(self, bot: PycordBot):
|
|
self.bot: PycordBot = bot
|
|
|
|
|
|
def setup(bot: PycordBot) -> None:
|
|
bot.add_cog(Event(bot))
|