Ejemplo n.º 1
0
def main():
    setup_logging()

    intents = discord.Intents.default()
    intents.members = True
    bot = Shinobu(command_prefix=CONSTANTS.CMD_PREFIX, intents=intents)

    with open('data/TOKEN') as f:
        token = f.readline().strip()
    bot.run(token)
Ejemplo n.º 2
0
def setup(bot: Shinobu):
    bot.add_cog(Economy(bot))
Ejemplo n.º 3
0
def setup(bot: Shinobu):
    bot.add_cog(Shop())
Ejemplo n.º 4
0
def setup(bot: Shinobu):
    bot.add_cog(Trade())
Ejemplo n.º 5
0
def setup(bot: Shinobu):
    bot.add_cog(MyAnimeList())
Ejemplo n.º 6
0
def setup(bot: Shinobu):
    bot.add_cog(Booru())
Ejemplo n.º 7
0
def setup(bot: shinobu.Shinobu):
    bot.add_cog(CallNotification())
Ejemplo n.º 8
0
def setup(bot: shinobu.Shinobu):
    bot.add_cog(Misc())