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