database/store.go

8 lines
117 B
Go

package database
// Store is an implementation of a Filer and a Searcher.
type Store interface {
Filer
Searcher
}