overflow_probes/config/config.go
crusader 6fb6bc66d8 ing
2017-09-22 18:20:07 +09:00

13 lines
244 B
Go

package config
const (
ConfigFileName = "config.json"
)
var Config AllConfig
type AllConfig struct {
Domain DomainConfig `json:"domain" yaml:"domain" toml:"domain"`
Central CentralConfig `json:"central" yaml:"central" toml:"central"`
}