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