mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-08-15 11:23:38 +00:00
8 lines
145 B
Go
8 lines
145 B
Go
package config
|
|
|
|
type ProcessorConfig struct {
|
|
Id string `json:"id"`
|
|
Type string `json:"type"`
|
|
Params Params `json:"params,omitempty"`
|
|
}
|