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

10 lines
230 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()
await bot.add_cog(punish)