Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Nov 15, 2023
1 parent 5b184e7 commit f159da4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions service/menu.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ var btnSub = telebot.Btn{
Text: LabelSub,
}

var btnMore = telebot.Btn{
Text: "More...",
}

var BtnMainMenu = telebot.Btn{
Text: LabelMainMenu,
}
Expand All @@ -85,8 +89,7 @@ func MakeMainMenuReplyKeyboad() (kbd *telebot.ReplyMarkup) {
ResizeKeyboard: true,
}
kbd.Reply(
kbd.Row(btnPub, btnSub),
kbd.Row(btnUsagePub),
kbd.Row(btnPub, btnSub, btnMore),
)
return
}

0 comments on commit f159da4

Please sign in to comment.