14 lines
257 B
Go
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
|
||
|
}
|