Files
nfasbb/commands.py
T
2026-06-26 20:58:19 -04:00

12 lines
279 B
Python

from telegram import Update
async def start(update: Update, _):
await update.message.reply_text(
"Hi! Send your message and it will be posted anonymously."
)
async def healthcheck(update: Update, _):
await update.message.reply_text("NFASBB Bot Healthy!")