2023-03-12 21:26:26 +01:00

7 lines
157 B
Python

from redbot.core import commands
from .recruitment import Recruitment
def setup(bot: commands.Bot) -> None:
cog = Recruitment(bot)
bot.add_cog(cog)