def setup(bot: Bot): bot.add_cog(Api(bot))
def setup(bot: Bot): bot.add_cog(Admin(bot))
def setup(bot: Bot): bot.add_cog(Management(bot))
def setup(bot: Bot) -> None: bot.add_cog(MainCog(bot)) print(" Main cog!")
def setup(bot: Bot) -> None: bot.add_cog(MessagesCog(bot)) print(" Messages cog!")
def setup(bot: Bot) -> None: bot.add_cog(AdminCog(bot)) print(" Admin cog!")
def setup(bot: Bot) -> None: bot.add_cog(ListingCog(bot)) print(" Listing cog!")
def setup(bot: Bot) -> None: logic_functions = LogicFunctions(bot) bot.add_cog(SetupCog(bot, logic_functions)) bot.add_cog(SetupCogSlash(bot, logic_functions)) print(" Setup cog!")
def setup(bot: Bot): bot.add_cog(Analytics(bot))
def setup(bot: Bot): bot.add_cog(Enforcement(bot))
def setup(bot: Bot): bot.add_cog(Queue(bot))
def setup(bot: Bot): bot.add_cog(Verification(bot))
def setup(bot: Bot) -> None: bot.add_cog(ComponentChecking(bot)) print(" Listing cog!")