Versions in this module Expand all Collapse all v0 v0.5.2 Nov 8, 2020 Changes in this version + var ErrNotFound = errors.New("etcdwrapper: key not found") + type Client interface + Close func() error + Create func(ctx context.Context, key string, value []byte) error + Get func(ctx context.Context, key string) (Value, error) + List func(ctx context.Context, key string, rev int) ([]Value, error) + Put func(ctx context.Context, key string, value []byte) error + Update func(ctx context.Context, key string, revision int64, value []byte) error + func New(config endpoint.ETCDConfig) (Client, error) + type Value struct + Data []byte + Key []byte + Modified int64