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
+1 -1
View File
@@ -19,7 +19,7 @@ func GetModulesSchema() *jsonschema.Schema {
}
moduleDefinitionSchemas := []*jsonschema.Schema{}
for _, mod := range module.ModuleRegistry {
for _, mod := range module.GetModuleRegistrations() {
moduleSchema := &jsonschema.Schema{
ID: mod.Type,
Type: "object",
+1 -1
View File
@@ -19,7 +19,7 @@ func GetProcessorsSchema() *jsonschema.Schema {
}
processorDefinitionSchemas := []*jsonschema.Schema{}
for _, proc := range processor.ProcessorRegistry {
for _, proc := range processor.GetProcessorRegistrations() {
processorSchema := &jsonschema.Schema{
ID: proc.Type,
Type: "object",