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

// Item should only be embedded into content type structs.
// Helper for DB-related actions
type Item struct {
	ID int `json:"id"`
}