runabot/Christmas/Cogs/Commands_Aiart.py
2023-11-26 02:28:48 +09:00

19 lines
389 B
Python

from discord import ApplicationContext, DiscordException
from discord.ext.commands import Cog
class CAiart(Cog):
def __init__(self, bot):
self.bot = bot
@Cog.listener()
async def on_application_command_error(ctx: ApplicationContext, exception: DiscordException) -> None:
pass
def setup(bot):
bot.add_cog(CAiart(bot))