17 lines
202 B
Python
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))
|