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

18 lines
217 B
Python

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