ShahriarAbidbd/SmartifyXBotPublic · Bot Template

Do Tasks Smartly with SmartifyX 😎

Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
ProfileTelegram
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
Back to folder

commands/Admin Panel/admin_panel_home.js

javascript · 33 lines

Raw
1/**#command2name: admin_panel_home3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!user.id == 7168234650) {13  return14}15 16Api.editMessageText({17  text: `Admin Panel`,18  chat_id: chat.id,19  message_id: request.message.message_id,20  reply_markup: {21    inline_keyboard: [22      [{23        text: "✅ Check API Health",24        callback_data: "check_api_health"25      }],26      [{27        text: "☰ Other Commands",28        callback_data: " other_commands",29        style: "success"30      }]31    ]32  }33})