17 lines
182 B
Python
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))
|