database/store.go

8 lines
117 B
Go
Raw Normal View History

2022-07-26 04:36:46 +00:00
package database
2022-08-29 06:36:37 +00:00
// Store is an implementation of a Filer and a Searcher.
2022-07-26 04:36:46 +00:00
type Store interface {
Filer
Searcher
}