about summary refs log tree commit diff
path: root/src/structs/crumb.go
blob: f96b1fa64eadd5a1e1f43db1aa15d01a97c76480 (plain)
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
}