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
@@ -10,7 +10,7 @@ import (
)
func TestStringDecodeFromRegistry(t *testing.T) {
registration, ok := processor.ProcessorRegistry["string.decode"]
registration, ok := processor.GetProcessorRegistration("string.decode")
if !ok {
t.Fatalf("string.decode processor not registered")
}
@@ -101,7 +101,7 @@ func TestBadStringDecode(t *testing.T) {
}
func BenchmarkStringDecode(b *testing.B) {
registration, ok := processor.ProcessorRegistry["string.decode"]
registration, ok := processor.GetProcessorRegistration("string.decode")
if !ok {
b.Fatalf("string.decode processor not registered")
}