17 lines
458 B
Go
17 lines
458 B
Go
|
package bot
|
||
|
|
||
|
import tele "gopkg.in/telebot.v3"
|
||
|
|
||
|
var homeMenu tele.ReplyMarkup = tele.ReplyMarkup{
|
||
|
InlineKeyboard: [][]tele.InlineButton{
|
||
|
{tele.InlineButton{Text: "Lowest Price", Unique: "price"}, tele.InlineButton{Text: "List", Unique: "list"}},
|
||
|
{tele.InlineButton{Text: "Help", Unique: "help"}},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
var helpMenu tele.ReplyMarkup = tele.ReplyMarkup{
|
||
|
InlineKeyboard: [][]tele.InlineButton{
|
||
|
{tele.InlineButton{Text: "Back", Unique: "home"}},
|
||
|
},
|
||
|
}
|