This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
328 B
Python
Raw Normal View History

from pyrogram import filters
from pyrogram.client import Client
from pyrogram.types import CallbackQuery
2023-08-03 21:29:47 +02:00
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...")