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 }