11 lines
328 B
Python
11 lines
328 B
Python
from pyrogram import filters
|
|
from pyrogram.client import Client
|
|
from pyrogram.types import CallbackQuery
|
|
|
|
from classes.pyroclient import PyroClient
|
|
|
|
|
|
@Client.on_callback_query(filters.regex("nothing")) # type: ignore
|
|
async def callback_nothing(app: PyroClient, clb: CallbackQuery):
|
|
await clb.answer(text="Nothing here...")
|