1 2 3 4 5 6 7 8 9 10
package structs // Breadcrumbs defines a list of crumbs type Breadcrumbs []Crumb // Crumb defines a path segment type Crumb struct { Text string Link string }