DeepBlue/bot.py

10 lines
187 B
Python
Raw Normal View History

2020-01-06 22:29:42 +00:00
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()