From 82228b17ebc6b7d92f9f54028931ebea1816c079 Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 6 Jan 2020 23:29:42 +0100 Subject: [PATCH] Initial Commit --- 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..cd29f90 --- /dev/null +++ b/bot.py @@ -0,0 +1,10 @@ +import discord +from discord.ext import commands + +client = commands.Bot(command_prefix='.') + +@client.event +async def on_ready(): + print(f"Logged in as {client.user.name}") + +client.run() \ No newline at end of file