8 lines
248 B
Go
Raw Normal View History

2017-12-01 18:44:28 +09:00
package probe
type Config struct {
2017-12-08 14:38:29 +09:00
Central CentralConfig `json:"central" yaml:"central" toml:"central"`
Probe ProbeConfig `json:"probe" yaml:"probe" toml:"probe"`
Paths map[string]string `json:"paths" yaml:"paths" toml:"paths"`
2017-12-01 18:44:28 +09:00
}