package plugin import ( "github.com/ipfs/go-ipfs/core/coredag" node "gx/ipfs/QmPN7cwmpcc4DWXb4KTB9dNAJgjuPY69h3npsMfhRrQL9c/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 node.BlockDecoder) error RegisterInputEncParsers(iec coredag.InputEncParsers) error }