tube/app/store.go

9 lines
152 B
Go
Raw Normal View History

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