ShahriarAbidbd/SmartifyXBotPublic · Bot Template
Do Tasks Smartly with SmartifyX 😎
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/Admin Panel/_admin_panel.js
javascript · 32 lines
1/**#command2name: /admin_panel3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!user.id == 7168234650) {13 return14}15 16Api.sendMessage({17 text: "Admin Panel",18 reply_markup: {19 inline_keyboard: [20 [{21 text: "✅ Check API Health",22 callback_data: "check_api_health"23 }],24 [{25 text: "☰ Other Commands",26 callback_data: " other_commands",27 style: "success"28 }]29 30 ]31 }32})