mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
8 lines
142 B
Go
8 lines
142 B
Go
package config
|
|
|
|
type ModuleConfig struct {
|
|
Id string `json:"id"`
|
|
Type string `json:"type"`
|
|
Params Params `json:"params,omitempty"`
|
|
}
|