first commit

This commit is contained in:
RayExo
2026-07-12 15:16:07 +05:30
commit 2289301f26
915 changed files with 69400 additions and 0 deletions

13
bot/cogs/events/ai.py Normal file
View File

@@ -0,0 +1,13 @@
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))