Basic bot start
This commit is contained in:
parent
912df7fb08
commit
0e5297d02f
1 changed files with 10 additions and 0 deletions
10
bot.py
Normal file
10
bot.py
Normal 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())
|
Loading…
Reference in a new issue