Basic bot start

This commit is contained in:
Ethanell 2019-08-10 11:19:49 +02:00
parent 912df7fb08
commit 0e5297d02f

10
bot.py Normal file
View file

@ -0,0 +1,10 @@
import discord
class Bot(discord.Client):
async def on_ready(self):
print("FurrMula Bot online !")
bot = Bot()
bot.run(open("token.ini").read())