Files
2021-09-22 08:27:46 -04:00

20 lines
334 B
Python

import os
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print(f"Logged in as {bot.user}")
@bot.command()
async def ping(ctx):
await ctx.send('pong')
@bot.command()
async def hello(ctx):
await ctx.send("Choo choo! 🚅")
bot.run(os.environ["DISCORD_TOKEN"])