18 lines
237 B
Go
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
|
||
|
}
|