Remove unused voice cog

This commit is contained in:
Marco Thomas
2020-08-24 19:49:12 +02:00
parent a28a3aa2b2
commit 983a88c2d3
3 changed files with 26 additions and 190 deletions

21
cogs/reminder.py Normal file
View File

@@ -0,0 +1,21 @@
"""
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))