Move cog_framwork to toplevel

This commit is contained in:
Marco Thomas
2020-09-30 09:31:04 +02:00
parent 522c0ecf52
commit eeeabd4a51

View File

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