summaryrefslogtreecommitdiff
path: root/app/store.go
blob: 747a22465bd7e651c02109e29b8164b73d44a5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
package app

// Store ...
type Store interface {
	Close() error
	Migrate(collection, id string) error
	GetViews_(collection, id string) (int64, error)
	IncView_(collection, id string) error
	GetViews(id string) (int64, error)
	IncViews(id string) error
}