Files
Mace-AIO-Discord-Bot---With…/bot/cogs/events/ai.py
2026-07-12 15:16:07 +05:30

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