don't export module/processor/framer registrations

This commit is contained in:
Joel Wetzell
2026-05-26 17:27:35 -05:00
parent 0ff212742a
commit 80f8152dfb
77 changed files with 299 additions and 258 deletions
@@ -11,7 +11,7 @@ import (
)
func TestStringEncodeFromRegistry(t *testing.T) {
registration, ok := processor.ProcessorRegistry["string.encode"]
registration, ok := processor.GetProcessorRegistration("string.encode")
if !ok {
t.Fatalf("string.encode processor not registered")
}
@@ -107,7 +107,7 @@ func TestBadStringEncode(t *testing.T) {
}
func BenchmarkStringEncode(b *testing.B) {
registration, ok := processor.ProcessorRegistry["string.encode"]
registration, ok := processor.GetProcessorRegistration("string.encode")
if !ok {
b.Fatalf("string.encode processor not registered")
}