20 lines
604 B
Python
20 lines
604 B
Python
import asyncio
|
|
|
|
import discord
|
|
|
|
import Music
|
|
|
|
import Porno
|
|
|
|
import Shitpost
|
|
|
|
import General
|
|
|
|
from discord.ext import commands
|
|
|
|
|
|
|
|
bot = commands.Bot(command_prefix=commands.when_mentioned_or('!'), description='Stroopwafel. Shitpost bot extraordinaire.', pm_help=True)
|
|
|
|
bot.add_cog(Music.Music(bot))
|
|
|
|
bot.add_cog(Shitpost.Shitpost(bot))
|
|
|
|
bot.add_cog(Porno.Porno(bot))
|
|
|
|
bot.add_cog(General.General(bot))
|
|
|
|
|
|
|
|
@bot.event
|
|
|
|
@asyncio.coroutine
|
|
|
|
def on_ready():
|
|
|
|
print('Logged in as:\n{0} (ID: {0.id})'.format(bot.user))
|
|
|
|
|
|
|
|
bot.run('MjczODc1ODM1NzIxNzQ0Mzg1.C2p7EA._tTMtYEsaUuTv_RtOifGhNX9QZ4') |