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())