Create common

This commit is contained in:
Whispering Wind
2024-12-15 00:34:35 +03:30
committed by GitHub
parent 38452a0959
commit 621c5c48b2

View File

@ -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