10 lines
237 B
Python
10 lines
237 B
Python
from discord.ext import commands
|
|
|
|
from .aimod_cog import AIModerationCog
|
|
|
|
|
|
async def setup(bot: commands.Bot):
|
|
"""Load the AIModerationCog."""
|
|
await bot.add_cog(AIModerationCog(bot))
|
|
print("AIModerationCog has been loaded.")
|