mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
9 lines
213 B
Python
9 lines
213 B
Python
from aiogram import Router
|
|
from aiogram.types import CallbackQuery
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.callback_query()
|
|
async def process_callback_query(q: CallbackQuery):
|
|
await q.answer("Success!", show_alert=True)
|