summaryrefslogtreecommitdiff
path: root/app/store.go
blob: e7c27e47886bc72e8a798c3681b1d3343ac82421 (plain)
1
2
3
4
5
6
7
8
package app

// Store ...
type Store interface {
	Close() error
	GetViews(collection, id string) (int64, error)
	IncView(collection, id string) error
}