Brandon209-Red-bot-Cogs/roletracker/__init__.py

8 lines
142 B
Python
Raw Normal View History

2020-03-07 06:29:55 +13:00
from .trotters import Trotters
async def setup(bot):
trotters = Trotters(bot)
await trotters.initialize()
bot.add_cog(trotters)