Files
showbridge-go/internal/config/route.go
2026-05-06 17:16:45 -05:00

13 lines
273 B
Go

package config
type RouteConfig struct {
Input string `json:"input"`
Processors []ProcessorConfig `json:"processors"`
}
type RouteError struct {
Index int `json:"index"`
Config RouteConfig `json:"config"`
Error string `json:"error"`
}