7 lines
126 B
Python
7 lines
126 B
Python
from redbot.core.bot import Red
|
|
from .recruitment import Recruitment
|
|
|
|
|
|
def setup(bot: Red):
|
|
bot.add_cog(Recruitment(bot))
|