Reorganized plugins

This commit is contained in:
2023-08-03 21:32:58 +02:00
parent 53811c9179
commit 40d786b585
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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...")