Brandon209-Red-bot-Cogs/punish/__init__.py

10 lines
224 B
Python
Raw Normal View History

from .punish import Punish
__red_end_user_data_statement__ = "This will store who is currently punished in each guild."
2021-02-06 21:42:47 +13:00
async def setup(bot):
punish = Punish(bot)
await punish.initialize()
bot.add_cog(punish)