From 0e5297d02fb6ec289da6e0769c041cd1c7719437 Mon Sep 17 00:00:00 2001 From: flifloo Date: Sat, 10 Aug 2019 11:19:49 +0200 Subject: [PATCH] Basic bot start --- bot.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bot.py diff --git a/bot.py b/bot.py new file mode 100644 index 0000000..ef22205 --- /dev/null +++ b/bot.py @@ -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())