Brandon209-Red-bot-Cogs/rolemanagement/__init__.py
2023-05-04 15:33:23 -04:00

10 lines
238 B
Python

from .core import RoleManagement
__red_end_user_data_statement__ = "This will only store birthdays, sticky, and subscribed roles for users."
async def setup(bot):
cog = RoleManagement(bot)
await bot.add_cog(cog)
cog.init()