mirror of
https://github.com/avipatilpro/FileStreamBot.git
synced 2026-01-16 06:42:54 -03:00
8 lines
210 B
Python
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)
|