24 lines
682 B
Python
24 lines
682 B
Python
|
from pyrogram.client import Client
|
||
|
from pyrogram.types import (
|
||
|
InlineQuery,
|
||
|
InlineQueryResultArticle,
|
||
|
InputTextMessageContent,
|
||
|
)
|
||
|
|
||
|
from modules.app import PyroClient
|
||
|
|
||
|
|
||
|
@Client.on_inline_query() # type: ignore
|
||
|
async def inline(app: PyroClient, inline_query: InlineQuery):
|
||
|
await inline_query.answer(
|
||
|
results=[
|
||
|
InlineQueryResultArticle(
|
||
|
title="Nothing here",
|
||
|
input_message_content=InputTextMessageContent(
|
||
|
"Please set up your InlineQuery in `plugins/inline.py`"
|
||
|
),
|
||
|
description="Please set up your InlineQuery in `plugins/inline.py`",
|
||
|
)
|
||
|
]
|
||
|
)
|