some work done

This commit is contained in:
ston1th 2021-03-01 07:40:10 +01:00
commit 09fe1cd163
13 changed files with 174 additions and 45 deletions

View file

@ -16,6 +16,7 @@ type Cluster interface {
type KV interface {
Get(k string) ([]byte, error)
GetPrefix(k string) (map[string][]byte, error)
Set(k string, v []byte) error
Delete(k string) error
}