mirror of
https://github.com/Xtao-Labs/twitter2telegram.git
synced 2024-11-21 22:58:08 +00:00
9 lines
162 B
Python
9 lines
162 B
Python
|
from init import bot
|
||
|
|
||
|
from pyrogram import filters
|
||
|
|
||
|
|
||
|
@bot.on_message(filters=filters.command("ping"))
|
||
|
async def ping(_, message):
|
||
|
await message.reply("pong")
|