13 lines
269 B
Python
13 lines
269 B
Python
import discord
|
|
from discord.ext import commands
|
|
|
|
class AIResponses(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
pass
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(AIResponses(bot)) |