bin/models/menuitem.go

22 lines
235 B
Go
Raw Normal View History

2023-09-11 23:26:50 +02:00
package models
type MenuItem struct {
Label string
Href string
}
var DefaultMenu []MenuItem = []MenuItem{
{
Label: "home",
Href: "/",
},
{
Label: "new",
Href: "/new",
},
{
Label: "about",
Href: "/about",
},
}