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
+2 -2
View File
@@ -11,7 +11,7 @@ import (
)
func TestJsonDecodeFromRegistry(t *testing.T) {
registration, ok := processor.ProcessorRegistry["json.decode"]
registration, ok := processor.GetProcessorRegistration("json.decode")
if !ok {
t.Fatalf("json.decode processor not registered")
}
@@ -127,7 +127,7 @@ func TestBadJsonDecode(t *testing.T) {
}
func BenchmarkJsonDecode(b *testing.B) {
registration, ok := processor.ProcessorRegistry["json.decode"]
registration, ok := processor.GetProcessorRegistration("json.decode")
if !ok {
b.Fatalf("json.decode processor not registered")
}