diff --git a/core/scripts/telegrambot/utils/common.py b/core/scripts/telegrambot/utils/common.py new file mode 100644 index 0000000..4794328 --- /dev/null +++ b/core/scripts/telegrambot/utils/common.py @@ -0,0 +1,8 @@ +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') + return markup