mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-17 06:57:40 +08:00
14 lines
263 B
Go
14 lines
263 B
Go
package plugin
|
|
|
|
import (
|
|
multicodec "github.com/ipld/go-ipld-prime/multicodec"
|
|
)
|
|
|
|
// PluginIPLD is an interface that can be implemented to add handlers for
|
|
// for different IPLD codecs.
|
|
type PluginIPLD interface {
|
|
Plugin
|
|
|
|
Register(multicodec.Registry) error
|
|
}
|