diff options
-rw-r--r-- | bot/exts/utilities/trivianight.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bot/exts/utilities/trivianight.py b/bot/exts/utilities/trivianight.py new file mode 100644 index 00000000..29a9e3d1 --- /dev/null +++ b/bot/exts/utilities/trivianight.py @@ -0,0 +1,15 @@ +from discord.ext import commands + +from bot.bot import Bot + + +class TriviaNight(commands.Cog): + """Cog for the Python Trivia Night event.""" + + def __init__(self, bot: Bot): + self.bot = bot + + +def setup(bot: Bot) -> None: + """Load the TriviaNight cog.""" + bot.add_cog(TriviaNight(bot)) |