mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-11 19:27:51 +08:00
19 lines
405 B
Go
19 lines
405 B
Go
package coreunix
|
|
|
|
import (
|
|
"context"
|
|
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
path "github.com/ipfs/go-ipfs/path"
|
|
uio "github.com/ipfs/go-ipfs/unixfs/io"
|
|
)
|
|
|
|
func Cat(ctx context.Context, n *core.IpfsNode, pstr string) (uio.DagReader, error) {
|
|
dagNode, err := core.Resolve(ctx, n.Namesys, n.Resolver, path.Path(pstr))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return uio.NewDagReader(ctx, dagNode, n.DAG)
|
|
}
|