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