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

10 lines
224 B
Python

from .punish import Punish
__red_end_user_data_statement__ = "This will store who is currently punished in each guild."
async def setup(bot):
punish = Punish(bot)
await punish.initialize()
bot.add_cog(punish)