Versions in this module Expand all Collapse all v0 v0.11.0 Jul 24, 2020 Changes in this version + var ErrNilStorage = errors.New("container storage is nil") + var ErrNotFound = errors.New("container not found") + type CID = container.ID + type Container = container.Container + type OwnerID = container.OwnerID + type Storage interface + Delete func(CID) error + Get func(CID) (*Container, error) + List func(*OwnerID) ([]CID, error) + Put func(*Container) (*CID, error)