tube/app/store.go

8 lines
152 B
Go

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