Files
2024-08-31 06:18:23 +10:00

9 lines
177 B
Python

import logging
from meta import LionBot
logger = logging.getLogger(__name__)
async def setup(bot: LionBot):
from .cog import AlertCog
await bot.add_cog(AlertCog(bot))