Files
aquabot/cogs/cog_framework.py
CramMK 7e805ff13a Create structure
This commit creates the first, inital structure for the project.
2020-01-17 15:09:53 +00:00

21 lines
302 B
Python

#
# 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))