Some small improvements

This commit is contained in:
Marco Thomas
2020-10-08 10:05:58 +02:00
parent 24c416a80b
commit 4a5933729b
12 changed files with 48 additions and 71 deletions

View File

@@ -1,18 +1,16 @@
"""
This framework can be used to create new Cogs, remember to add them in the config
"""
# IMPORTS
import discord
from discord.ext import commands
# COG INIT
class Foo(commands.Cog):
def __init__(self, bot):
self.bot = bot
# COG BODY
# COG ENDING
def setup(bot):
bot.add_cog(Foo(bot))