10 lines
174 B
Go
10 lines
174 B
Go
package main
|
|
|
|
type NavItem struct {
|
|
Destination string
|
|
Caption string
|
|
}
|
|
|
|
func NewNavItem(destination, caption string) NavItem {
|
|
return NavItem{destination, caption}
|
|
}
|