@bot.message_handler(commands=['start'])
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=False, one_time_keyboard=True)
btn1 = types.KeyboardButton(" Кейсы")
btn2 = types.KeyboardButton(" Статистика")
btn3 = types.KeyboardButton(" Отзывы")
markup.row(btn1, btn2)
markup.row(btn3)
bot.send_photo(message.from_user.id, first_photo, caption=first_msg, reply_markup=markup)
@bot.message_handler(content_types=['text'])
def executor(message):
markup = types.InlineKeyboardMarkup()
btn1 = types.InlineKeyboardButton(" Bum Case (19Р)")
markup.add(btn1)
bot.send_message(message.from_user.id, 'Работает!!!', reply_markup=markup)