poll := tgbotapi.SendPollConfig{
BaseChat: tgbotapi.BaseChat{
ChatID: update.Message.Chat.ID,
},
Question: "Answer to the Ultimate Question of Life, the Universe, and Everything",
Type: "quiz",
Options: []string{"41", "42", "32", "1"},
CorrectOptionID: 1,
}
bot.Send(poll)