Initial Commit

This commit is contained in:
Robert 2020-01-06 23:29:42 +01:00
commit 82228b17eb

10
bot.py Normal file
View file

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