7 lines
169 B
Python
Raw Permalink Normal View History

2023-03-12 21:26:26 +01:00
from redbot.core import commands
2023-03-12 18:20:53 +01:00
from .recruitment import Recruitment
2023-03-12 18:31:06 +01:00
async def setup(bot: commands.Bot) -> None:
2023-03-12 21:26:26 +01:00
cog = Recruitment(bot)
await bot.add_cog(cog)