udpate module and route config error objects for JSON

This commit is contained in:
Joel Wetzell
2026-03-12 17:03:03 -05:00
parent 04c8ebbe06
commit e996d84234
4 changed files with 12 additions and 12 deletions

View File

@@ -10,9 +10,9 @@ import (
)
type ModuleError struct {
Index int
Config config.ModuleConfig
Error error
Index int `json:"index"`
Config config.ModuleConfig `json:"config"`
Error string `json:"error"`
}
type Module interface {