Ruby-Cogs/rolehistory/__init__.py
2025-04-02 22:57:51 -04:00

7 lines
141 B
Python

from .rolehistory import RoleHistory
async def setup(bot):
cog = RoleHistory(bot)
await cog.initalize()
await bot.add_cog(cog)