Rssmon2/store/store.go

9 lines
179 B
Go
Executable File

package store
type Client interface {
Get(string, string) ([]byte, error)
Set(string, string, []byte) error
List(string, string, bool, int) ([]string, error)
Close() error
}