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

7 lines
135 B
Python
Raw Normal View History

from .activitylog import ActivityLogger
async def setup(bot):
n = ActivityLogger(bot)
await n.initialize()
bot.add_cog(n)