Files
FileStreamBot/WebStreamer/bot/plugins/about.py
2021-04-26 03:57:05 +05:30

8 lines
210 B
Python

from pyrogram import Client, Filters
@Client.on_message(Filters.command(["about"]))
async def start(client, message):
helptxt = f"Created for 😘😘 you only 😍"
await message.reply_text(helptxt)