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
|
|
|
|
2023-06-01 22:06:12 +02:00
|
|
|
async def setup(bot: commands.Bot) -> None:
|
2023-03-12 21:26:26 +01:00
|
|
|
cog = Recruitment(bot)
|
2023-06-01 22:06:12 +02:00
|
|
|
await bot.add_cog(cog)
|