Versions in this module Expand all Collapse all v0 v0.1.1 Sep 1, 2021 Changes in this version + type KVPair struct + Key string + Value []byte + type KVPairs []*KVPair + type Response struct + Error error + Value []byte + type Store interface + Get func(ctx context.Context, key string) ([]byte, error) + Set func(ctx context.Context, key string, value []byte) error + Watch func(ctx context.Context, key string) <-chan *Response + type Watcher interface