type HystrixConf struct {
Name string `yaml:"name"`
RequestThreshold int `yaml:"request_threshold"`
MaxRequests int `yaml:"max_requests"`
Timeout int `yaml:"timeout"`
SleepWindow int `yaml:"sleep_window"`
ErrorPercent int `yaml:"error_percent"`
}
type MysqlConf struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
DB string `yaml:"db"`
User string `yaml:"user"`
Password string `yaml:"password"`
}