mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
621 B
621 B
InlineQueryHandler
There is base class for inline query handlers.
Simple usage:
from aiogram.handlers import InlineQueryHandler
...
@router.inline_query()
class MyHandler(InlineQueryHandler):
async def handle(self) -> Any: ...
Extension
This base handler is subclass of BaseHandler with some extensions:
self.chatis alias forself.event.chatself.queryis alias forself.event.query