Files
2025-12-31 20:26:35 +00:00

14 lines
490 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from telebot import types
def create_main_markup():
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
markup.row(' Add User', '🔍 Show User')
markup.row('🗑️ Delete User', '🖥️ Server Info')
markup.row('💾 Backup Server', '⚙️ Settings')
return markup
def create_settings_markup():
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
markup.row('🔗 Get Webpanel URL')
markup.row('⬅️ Back')
return markup