Files
croccybot/src/modules/twreminders/__init__.py

9 lines
140 B
Python

import logging
logger = logging.getLogger(__name__)
from .cog import ReminderCog
async def setup(bot):
bot.add_cog(ReminderCog(bot))