expose config package

This commit is contained in:
Joel Wetzell
2026-09-07 18:43:11 -05:00
parent 176a42c7c1
commit a304b4b211
149 changed files with 150 additions and 145 deletions
+13
View File
@@ -0,0 +1,13 @@
package config
type RouteConfig struct {
Id string `json:"id"`
Input string `json:"input"`
Processors []ProcessorConfig `json:"processors"`
}
type RouteError struct {
Index int `json:"index"`
Config RouteConfig `json:"config"`
Error string `json:"error"`
}