mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
14 lines
296 B
Go
14 lines
296 B
Go
package iface
|
|
|
|
import (
|
|
ipld "gx/ipfs/QmRL22E4paat7ky7vx9MLpR97JHHbFPrg3ytFQw6qp1y1s/go-ipld-format"
|
|
)
|
|
|
|
// APIDagService extends ipld.DAGService
|
|
type APIDagService interface {
|
|
ipld.DAGService
|
|
|
|
// Pinning returns special NodeAdder which recursively pins added nodes
|
|
Pinning() ipld.NodeAdder
|
|
}
|