randydev's picture
fix revert back and update
21bc372
raw
history blame contribute delete
587 Bytes
from Data import Data
from pyrogram import Client, filters
from pyrogram.types import InlineKeyboardMarkup, Message
@Client.on_message(
filters.private
& filters.incoming
& filters.command("start")
)
async def start(bot: Client, msg: Message):
user = await bot.get_me()
mention = user.mention
await bot.send_photo(
msg.chat.id,
photo="https://randydev-meta-ai.hf.space/image/share/image.jpg",
caption=Data.START.format(
msg.from_user.mention,
mention
),
reply_markup=InlineKeyboardMarkup(Data.buttons)
)