kubo/core/coreiface/dag.go
Łukasz Magiera 152a54ad85 gx-go uw
This commit was moved from ipfs/interface-go-ipfs-core@93299fcb14

This commit was moved from ipfs/boxo@def3b3d805
2019-02-09 01:23:13 +01:00

14 lines
257 B
Go

package iface
import (
ipld "github.com/ipfs/go-ipld-format"
)
// APIDagService extends ipld.DAGService
type APIDagService interface {
ipld.DAGService
// Pinning returns special NodeAdder which recursively pins added nodes
Pinning() ipld.NodeAdder
}