You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
388 B
14 lines
388 B
from telegram import ForceReply, Update
|
|
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler
|
|
|
|
import os
|
|
|
|
class Extension:
|
|
enabled = int(os.getenv("DEBUG", 1))
|
|
|
|
def __init__(self, core) -> None:
|
|
pass
|
|
|
|
async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
|
|
if self.enabled:
|
|
print(update.to_json())
|