diff options
-rw-r--r-- | bot/exts/evergreen/duck_game.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py new file mode 100644 index 00000000..561d8a10 --- /dev/null +++ b/bot/exts/evergreen/duck_game.py @@ -0,0 +1,16 @@ + +from discord.ext import commands + +from bot.bot import Bot + + +class DuckGamesDirector(commands.Cog): + """A cog for running Duck Duck Duck Goose games.""" + + def __init__(self, bot: Bot) -> None: + self.bot = bot + + +def setup(bot: Bot) -> None: + """Load the DuckGamesDirector cog.""" + bot.add_cog(DuckGamesDirector(bot)) |