Files
aquabot/cogs/reminder.py
2020-10-08 12:26:37 +02:00

17 lines
202 B
Python

"""
A simple reminder option
"""
from discord.ext import commands
class Reminder(commands.Cog):
def __init__(self, bot):
self.bot = bot
def setup(bot):
bot.add_cog(Reminder(bot))