Added callback, command and inline to templates
This commit is contained in:
23
plugins/inline.py
Normal file
23
plugins/inline.py
Normal file
@@ -0,0 +1,23 @@
|
||||
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`",
|
||||
)
|
||||
]
|
||||
)
|
Reference in New Issue
Block a user