The kvstore package provides an interface for operations on a KV store with multiple implementations.
Documentation
type Store interface { Get(key string) ([]byte, error) Put(key string, data []byte) error Delete(key string) error }