from telegram import ForceReply, Update from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler class Extension: core = None def __init__(self, core) -> None: self.core = core async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE): if update.message.from_user.id in self.core.admins: return if update.message.text and update.message.text.split()[0] in ["/start"]: return for adm_id in self.core.admins: await update.message.forward(chat_id=adm_id) return