Create structure
This commit creates the first, inital structure for the project.
This commit is contained in:
20
cogs/cog_framework.py
Normal file
20
cogs/cog_framework.py
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# foo
|
||||
#
|
||||
# https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
|
||||
#
|
||||
|
||||
# IMPORTS
|
||||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
# COG INIT
|
||||
class FooCog(commands.Cog):
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
# COG BODY
|
||||
|
||||
# COG ENDING
|
||||
def setup(bot):
|
||||
bot.add_cog(FooCog(bot))
|
||||
Reference in New Issue
Block a user