Versions in this module Expand all Collapse all v0 v0.9.1 Dec 2, 2020 Changes in this version + var ErrNotFound = errors.New("not found") + type Closer interface + Close func() error + type Getter interface + GetObject func(ctx context.Context, path string) (Object, error) + type Lister interface + ListObjects func(ctx context.Context, prefix string) ([]Object, error) + type Object struct + Content []byte + Path string + Size int64 + type Putter interface + PutObject func(ctx context.Context, path string, content []byte) error + type Store interface + NewReader func(ctx context.Context, path string) (io.ReadCloser, error)