twitter2telegram/plugins/ping.py
2023-05-24 23:20:21 +08:00

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")