Files
aquabot/cogs/reminder.py
2020-08-24 19:49:12 +02:00

22 lines
327 B
Python

"""
A simple reminder option
https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
"""
# 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))