Files
pawhub-telegram-bot/errors.py
T
2025-11-27 22:15:48 +01:00

9 lines
268 B
Python

from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes
import configparser
import json
import os
async def error(update: Update, context: ContextTypes.DEFAULT_TYPE):
await update.message.reply_text("nope")
return