2023-03-12 18:08:32 +01:00
|
|
|
import asyncio
|
2023-03-12 12:13:30 +01:00
|
|
|
from .recruitment import Recruitment
|
2023-03-12 17:12:16 +01:00
|
|
|
from redbot.core.bot import Red
|
2023-03-12 12:13:30 +01:00
|
|
|
|
2023-03-12 17:49:13 +01:00
|
|
|
async def setup(bot: Red) -> None:
|
2023-03-12 18:08:32 +01:00
|
|
|
await asyncio.ensure_future(bot.add_cog(Recruitment(bot)))
|