From b478ff9669daca239e94cf0659e7c941a5071a6c Mon Sep 17 00:00:00 2001 From: rozha Date: Sun, 11 Aug 2019 13:20:40 +0300 Subject: [PATCH] Introduce NewOneTimeReplyKeyboard() helper function --- helpers.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/helpers.go b/helpers.go index 3dabe11..fc19313 100644 --- a/helpers.go +++ b/helpers.go @@ -704,6 +704,13 @@ func NewReplyKeyboard(rows ...[]KeyboardButton) ReplyKeyboardMarkup { } } +// NewOneTimeReplyKeyboard creates a new one time keyboard using NewReplyKeyboard() +func NewOneTimeReplyKeyboard(rows ...[]KeyboardButton) ReplyKeyboardMarkup { + markup := NewReplyKeyboard(rows...) + markup.OneTimeKeyboard = true + return markup +} + // NewInlineKeyboardButtonData creates an inline keyboard button with text // and data for a callback. func NewInlineKeyboardButtonData(text, data string) InlineKeyboardButton {