Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = errors.New("not found")
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface {
Get(ctx context.Context, key string, recursive bool, data interface{}) error
GetWithRevision(ctx context.Context, key string, rev int64, recursive bool, data interface{}) error
Set(ctx context.Context, key string, data interface{}) error
Delete(ctx context.Context, key string) error
Watch(ctx context.Context, key string) (Watcher, error)
}
Click to show internal directories.
Click to hide internal directories.