Kostiantyn Kuleshov
853c3c7cea
* Config file changes * Commands `/remove`, `/import` and `/export` Co-authored-by: profitroll <vozhd.kk@gmail.com> Co-authored-by: Profitroll <47523801+profitrollgame@users.noreply.github.com> Co-authored-by: Renovate <renovate@git.end-play.xyz> Reviewed-on: #19
13 lines
409 B
Python
13 lines
409 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
|
|
|
|
|
|
@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)
|
|
)
|