Files
tessera/services/data_service/internal/node/processor/registry.go

12 lines
170 B
Go

package processor
type Registry struct{}
type Factory interface {
New() Processor
Type() string
Version() string
TemplateFingerprint(cfg string) (string, error)
}