package
0.0.0-20190115210254-6b20bf86751a
Repository: https://github.com/moomerman/go-lib.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

kvstore

The kvstore package provides an interface for operations on a KV store with multiple implementations.

Documentation

Interface

type Store interface {
	Get(key string) ([]byte, error)
	Put(key string, data []byte) error
	Delete(key string) error
}

Implementations