packageifaceimport(cid"gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid")// Path is a generic wrapper for paths used in the API. A path can be resolved// to a CID using one of Resolve functions in the API.typePathinterface{// String returns the path as a string.String()string// Cid returns cid referred to by pathCid()*cid.Cid// Root returns cid of root pathRoot()*cid.Cid// Resolved returns whether path has been fully resolvedResolved()bool}