12 lines
279 B
Python
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!")
|