Files
aquabot/cogs/cog_framework.py
CramMK c0450c5bbe Add AquaBot title
and some other minor changes
2020-01-19 15:21:37 +01:00

20 lines
295 B
Python

#
# foo
#
# https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
#
# 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))