Moved handlers to another location

This commit is contained in:
2023-02-14 11:38:54 +01:00
parent b589da5d8f
commit 08e03ba911
6 changed files with 52 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
from modules.app import app
from pyrogram import filters
from pyrogram.types import CallbackQuery
from pyrogram.client import Client
from modules.utils import locale
# Callback empty ===============================================================================================================
@app.on_callback_query(filters.regex("nothing"))
async def callback_query_nothing(app: Client, clb: CallbackQuery):
await clb.answer(text=locale("nothing", "callback", locale=clb.from_user))
# ==============================================================================================================================