mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-05-07 01:55:57 +00:00
13 lines
273 B
Go
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"`
|
|
}
|