bot = telebot.TeleBot(config.TOKEN)
a = ["Привет", "привет", "Hello", "hello"]
@bot.message_handler(content_types=["text"])
def name_of_function(message: Message):
if message.text in a:
bot.reply_to(message, "Здравствуйте!")
return
a = ["Привет", "привет", "Hello", "hello"]
a = ["привет", "hello"]