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.
21 lines
959 B
21 lines
959 B
from telegram import ForceReply, Update
|
|
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler
|
|
|
|
class Extension:
|
|
cmds = ["/start"]
|
|
|
|
def __init__(self, core) -> None:
|
|
pass
|
|
|
|
async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
|
|
if update.message.text and update.message.text.split()[0] in self.cmds:
|
|
return await self.handler(update, context)
|
|
|
|
async def handler(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
|
|
return await update.message.reply_text("""
|
|
📲 Привет! Здесь ты можешь поделиться с админом важной или не очень инфой (фото, видео и просто сплетни).
|
|
|
|
💰 А еще здесь можно договориться о рекламе, чтобы админ поел в таких пирогах.
|
|
|
|
Этот бот был создан с помощью kremlin.ru
|
|
""")
|