agent_api/config_manager/global_config.go
jackdaw@loafle.com d444ac72de .
2017-04-27 14:58:34 +09:00

18 lines
237 B
Go

package config_manager
/* global config 예제
central:
address: "http://localhost:9090"
port: 443
log_path: "./bin/log.xml"
*/
type GlobalConfig struct {
Central struct {
Address string
Port int
}
Log_Path string
}