HTMLify
9yvs17u6ey.py
Views: 109 | Author: guest
1 2 3 4 5 6 7 8 9 10 11 12 13 | @Client.on_message(filters.command("start") & filters.incoming) async def start(client: Client, message: Message): await message.reply_text( f"**Hello {message.from_user.first_name}!**\nThis boilerplate is ready to go.", reply_markup=InlineKeyboardMarkup( [ [ InlineKeyboardButton("Help", url="https://t.me/devdoptpy"), InlineKeyboardButton("Callback ping", callback_data=f"ping#{message.from_user.id}") ] ] ) ) |