bin/models/menuitem.go

22 lines
239 B
Go
Raw Permalink 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",
},
2023-09-13 21:19:00 +02:00
/*{
2023-09-11 23:26:50 +02:00
Label: "about",
Href: "/about",
2023-09-13 21:19:00 +02:00
},*/
2023-09-11 23:26:50 +02:00
}