Closed

Description
We've layed the groundwork for the Core API in go-ipfs by implementing parts of the Unixfs API. Its functions properly return CIDs, but they only accept path strings as arguments, which requires unneccessary conversions in most situations.
Core API functions should accept:
- CIDs
- Strings
- Multihashes
- Paths
- ipfs.io URIs
The go-cid package in use provides Parse()
which takes care of it.