9 lines
490 B
Python
9 lines
490 B
Python
from app import app
|
|
from pyrogram import filters
|
|
from modules.utils import locale
|
|
|
|
# Callback empty ===============================================================================================================
|
|
@app.on_callback_query(filters.regex("nothing"))
|
|
async def callback_query_nothing(app, clb):
|
|
await clb.answer(text=locale("nothing", "callback"))
|
|
# ============================================================================================================================== |