diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/patreon.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py new file mode 100644 index 000000000..55accf29e --- /dev/null +++ b/bot/exts/info/patreon.py @@ -0,0 +1,19 @@ +import logging + +from discord.ext import commands + +from bot.bot import Bot + +log = logging.getLogger(__name__) + + +class Patreon(commands.Cog): + """Cog that shows patreon supporters.""" + + def __init__(self, bot: Bot): + self.bot = bot + + +def setup(bot: Bot) -> None: + """Load the patreon cog.""" + bot.add_cog(Patreon(bot)) |