def setup(bot: utils.CustomBot): x = GoogleAnalytics(bot) if '' in list(bot.config['google_analytics'].values()): x.log_handler.error( "Google Analytics authorization not set in config - not loading cog." ) else: bot.add_cog(x)
def setup(bot: utils.CustomBot): x = OwnerOnly(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = BotConfig(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = GuildCountPoster(bot) bot.add_cog(x)
def setup(bot:utils.CustomBot): x = UserUpdateEvent(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Information(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Marriage(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = ErrorHandler(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = HelpCommand(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = PresenceAutoUpdater(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = CommandEvent(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Parentage(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = RedisHandler(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Confession(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = ServerSpecific(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Simulation(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = ChannelEvent(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = Misc(bot) bot.add_cog(x)
def setup(bot: utils.CustomBot): x = ModeratorOnly(bot) bot.add_cog(x)