package plugin import ( "gitlab.dms3.io/dms3/go-dms3/core/coredag" ld "gitlab.dms3.io/dms3/go-ld-format" ) // PluginLD is an interface that can be implemented to add handlers for // for different LD formats type PluginLD interface { Plugin RegisterBlockDecoders(dec ld.BlockDecoder) error RegisterInputEncParsers(iec coredag.InputEncParsers) error }