GenAtoZ / plugins /commands.py
Manishx's picture
first
9ff40ac
raw
history blame
No virus
317 Bytes
from pyrogram import Client, filters
@Client.on_message(filters.command('start') & filters.private & ~filters.bot)
async def start(client, message):
await message.reply_text(
f'Hi {message.from_user.first_name}!\n\n'
f'Write a text or send me a file and I will generate a link for it.\n\n'
)