mirror of
https://github.com/Xtao-Labs/twitter2telegram.git
synced 2024-11-21 14:48:21 +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")
|