Files
aquabot/cogs/reminder.py
2020-08-31 14:19:43 +02:00

20 lines
260 B
Python

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