rearrange error return

This commit is contained in:
Joel Wetzell
2026-05-17 09:49:36 -05:00
parent b4d4ef3421
commit 2fdf6d1a61
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ type Config struct {
}
type Configurable interface {
UpdateConfig(newConfig Config, triggerChangeChannel bool) (error, []ModuleError, []RouteError)
UpdateConfig(newConfig Config, triggerChangeChannel bool) ([]ModuleError, []RouteError, error)
GetRunningConfig() Config
}