Versions in this module Expand all Collapse all v0 v0.1.0 Jun 29, 2017 Changes in this version + var ErrAlreadyExist = errors.New("already exists") + var ErrNotExist = errors.New("does not exist") + type MetadataStore interface + Create func(string, []byte) error + Delete func(string) error + Get func(string) ([]byte, error) + List func() ([][]byte, error) + Update func(string, UpdateFunc) error + func NewMetadataStore() MetadataStore + type UpdateFunc func([]byte) ([]byte, error) v0.1.0-alpha.1 Jun 22, 2017