22 lines
442 B
Go
22 lines
442 B
Go
package plugin
|
|
|
|
type PublisherCfg struct {
|
|
ID string `yaml:"id"`
|
|
Config map[string]string `yaml:"config"`
|
|
}
|
|
|
|
type ValidatorCfg struct {
|
|
ID string `yaml:"id"`
|
|
Config map[string]string `yaml:"config"`
|
|
}
|
|
|
|
type Config struct {
|
|
ID string `yaml:"id"`
|
|
Config map[string]string `yaml:"config"`
|
|
}
|
|
|
|
type ManagerConfig struct {
|
|
Root string `yaml:"root"`
|
|
RemoteRoot string `yaml:"remoteRoot"`
|
|
}
|