Files
aquabot/cog_framework.py
2020-10-09 18:35:05 +02:00

17 lines
182 B
Python

"""
"""
import discord
from discord.ext import commands
class Foo(commands.Cog):
def __init__(self, bot):
self.bot = bot
def setup(bot):
bot.add_cog(Foo(bot))