mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
20 lines
334 B
Python
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"]) |