Ejemplo n.º 1
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    bot.add_cog(Math(bot))
Ejemplo n.º 2
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    bot.add_cog(Documentation(bot))
Ejemplo n.º 3
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    from ._cog import Python
    bot.add_cog(Python(bot))
Ejemplo n.º 4
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    importlib.reload(_meme_generator)
    from ._cog import Memes
    bot.add_cog(Memes(bot))
Ejemplo n.º 5
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    importlib.reload(kaa_help)
    bot.add_cog(Help(bot))
Ejemplo n.º 6
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    bot.add_cog(CommandErrorHandler(bot))
Ejemplo n.º 7
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    from ._cog import Games
    bot.add_cog(Games(bot))
Ejemplo n.º 8
0
def setup(bot: Kaa) -> None:
    """function the bot uses to load this extension"""

    from ._cog import Code
    importlib.reload(_codeformatter)
    bot.add_cog(Code(bot))