mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
This commit was moved from ipfs/interface-go-ipfs-core@93299fcb14 This commit was moved from ipfs/boxo@def3b3d805
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
|
|
}
|