Better Framework, new cog-files

This commit is contained in:
CramMK
2020-01-22 22:29:16 +01:00
parent 2453f84fa2
commit 10c65cfda4
11 changed files with 94 additions and 58 deletions

20
cogs/anime.py Normal file
View File

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