fix
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Владимир Фёдоров 2023-04-30 01:08:28 +07:00
parent 6a6aff0274
commit 4e9e9702d5
1 changed files with 5 additions and 9 deletions

View File

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