Brandon209-Red-bot-Cogs/rolemanagement/__init__.py
2021-02-06 03:42:47 -05:00

10 lines
214 B
Python

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