summaryrefslogtreecommitdiff
path: root/system/db/item.go
blob: 23e8553752c78ae72ca0d353119370277e162b41 (plain)
1
2
3
4
5
6
7
8
// Package db ...
package db

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