5 lines
144 B
Python
Raw Normal View History

2023-03-12 17:12:16 +01:00
from redbot.core.bot import Red
2023-03-12 18:20:53 +01:00
from .recruitment import Recruitment
async def setup(bot: Red) -> None:
2023-03-12 18:20:53 +01:00
await bot.add_cog(Recruitment(bot))