import telebot
from telebot import types
bot = telebot.TeleBot('')
@bot.message_handler(commands=['start'])
def handle_start(message):
bot.send_message(message.from_user.id, "Привет, бот создан берсеркам",reply_markup=markup)
bot.message_handler(commands=['meta'])
def...