Improve Musicbot

This commit is contained in:
CramMK
2020-04-24 15:49:49 +02:00
parent bd7c614220
commit b0dd7f2ca6
10 changed files with 444 additions and 157 deletions

20
cogs/meme.py Normal file
View File

@@ -0,0 +1,20 @@
"""
Send spicy memes to chat
https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
"""
# IMPORTS
import discord
from discord.ext import commands
# COG INIT
class Meme(commands.Cog):
def __init__(self, bot):
self.bot = bot
# COG BODY
# COG ENDING
def setup(bot):
bot.add_cog(Meme(bot))