mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-15 20:01:44 +08:00
17 lines
402 B
Go
17 lines
402 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/ipfs/go-ipfs/core/coredag"
|
|
|
|
ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
|
|
)
|
|
|
|
// PluginIPLD is an interface that can be implemented to add handlers for
|
|
// for different IPLD formats
|
|
type PluginIPLD interface {
|
|
Plugin
|
|
|
|
RegisterBlockDecoders(dec ipld.BlockDecoder) error
|
|
RegisterInputEncParsers(iec coredag.InputEncParsers) error
|
|
}
|