summaryrefslogtreecommitdiff
path: root/content/item.go
blob: 08d635988aa2574e943614758a1075d73de77cf1 (plain)
1
2
3
4
5
6
7
package content

// Item should only be embedded into content type structs.
type Item struct {
	ID   int    `json:"id"`
	Slug string `json:"slug"`
}