16 lines
167 B
Go
16 lines
167 B
Go
package nav
|
|
|
|
type NavItem struct {
|
|
name string
|
|
href string
|
|
}
|
|
|
|
func getNavItems() []NavItem {
|
|
return []NavItem{
|
|
{
|
|
name: "Movies",
|
|
href: "/movies",
|
|
},
|
|
}
|
|
}
|