11 lines
651 B
Python
11 lines
651 B
Python
from modules.app import app
|
|
from pyrogram import filters
|
|
from pyrogram.types import CallbackQuery
|
|
from classes.poster_client import PosterClient
|
|
from modules.utils import locale
|
|
|
|
# Callback empty ===============================================================================================================
|
|
@app.on_callback_query(filters.regex("nothing"))
|
|
async def callback_query_nothing(app: PosterClient, clb: CallbackQuery):
|
|
await clb.answer(text=locale("nothing", "callback", locale=clb.from_user.language_code))
|
|
# ============================================================================================================================== |