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

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