This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Telegram/modules/callbacks/nothing.py

11 lines
611 B
Python
Raw Normal View History

2022-12-05 19:49:51 +02:00
from app import app
from pyrogram import filters
2022-12-27 14:36:54 +02:00
from pyrogram.types import CallbackQuery
from pyrogram.client import Client
2022-12-05 19:49:51 +02:00
from modules.utils import locale
# Callback empty ===============================================================================================================
@app.on_callback_query(filters.regex("nothing"))
2022-12-27 14:36:54 +02:00
async def callback_query_nothing(app: Client, clb: CallbackQuery):
2022-12-17 01:58:33 +02:00
await clb.answer(text=locale("nothing", "callback", locale=clb.from_user))
2022-12-05 19:49:51 +02:00
# ==============================================================================================================================