diff options
author | 2021-10-13 20:22:54 -0400 | |
---|---|---|
committer | 2022-02-09 18:13:36 -0500 | |
commit | 2447c51a4dc74d48872caa58fe8f5cc350cf3754 (patch) | |
tree | 42dc1e906c5a7f7250286090777a879f47e10da1 /bot | |
parent | Merge pull request #1020 from python-discord/love-calculator-unsub-footer (diff) |
initial commit
Diffstat (limited to 'bot')
-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)) |