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
@@ -12,7 +12,7 @@ import (
)
func TestJsonEncodeFromRegistry(t *testing.T) {
registration, ok := processor.ProcessorRegistry["json.encode"]
registration, ok := processor.GetProcessorRegistration("json.encode")
if !ok {
t.Fatalf("json.encode processor not registered")
}
@@ -116,7 +116,7 @@ func TestBadJsonEncode(t *testing.T) {
}
func BenchmarkJsonEncode(b *testing.B) {
registration, ok := processor.ProcessorRegistry["json.encode"]
registration, ok := processor.GetProcessorRegistration("json.encode")
if !ok {
b.Fatalf("json.encode processor not registered")
}