mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-05-07 10:05:54 +00:00
14 lines
280 B
Go
14 lines
280 B
Go
package config
|
|
|
|
type ModuleConfig struct {
|
|
Id string `json:"id"`
|
|
Type string `json:"type"`
|
|
Params Params `json:"params,omitempty"`
|
|
}
|
|
|
|
type ModuleError struct {
|
|
Index int `json:"index"`
|
|
Config ModuleConfig `json:"config"`
|
|
Error string `json:"error"`
|
|
}
|