diff --git a/internal/states/pause_bot_state/pause_bot_state.go b/internal/states/pause_bot_state/pause_bot_state.go index 702be79..780e5ab 100644 --- a/internal/states/pause_bot_state/pause_bot_state.go +++ b/internal/states/pause_bot_state/pause_bot_state.go @@ -4,11 +4,12 @@ import ( "fmt" "log" "net/http" - "valera/internal/db" - "valera/internal/states" tgbot "github.com/go-telegram-bot-api/telegram-bot-api" "golang.org/x/exp/slices" + + "valera/internal/db" + "valera/internal/states" ) var names = []string{ @@ -50,13 +51,8 @@ func (s *pauseBotState) Do(text string, chatInfo *db.ChatInfo) error { msg := tgbot.NewMessage(chatInfo.ChatID, "Хочешь отдохнуть? Сколько времени тебе нужно?") msg.ReplyMarkup = tgbot.NewReplyKeyboard([][]tgbot.KeyboardButton{ tgbot.NewKeyboardButtonRow( - tgbot.NewKeyboardButton("1ч"), - tgbot.NewKeyboardButton("4ч"), - ), - tgbot.NewKeyboardButtonRow( - tgbot.NewKeyboardButton("1д"), - tgbot.NewKeyboardButton("2д"), - tgbot.NewKeyboardButton("7д"), + tgbot.NewKeyboardButton("8ч"), + tgbot.NewKeyboardButton("32ч"), ), }...) _, _ = s.bot.Send(msg)