9 lines
274 B
Python
9 lines
274 B
Python
|
from pyrogram import Client, filters
|
||
|
from pyrogram.types import Message
|
||
|
|
||
|
|
||
|
@Client.on_message(filters.incoming & filters.private &
|
||
|
filters.command(["ping", ]))
|
||
|
async def ping_check(_: Client, message: Message):
|
||
|
await message.reply("poi ~", quote=True)
|