1 Star 1 Fork 0

吴文凯/core-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
command.go 761 Bytes
一键复制 编辑 原始数据 按行查看 历史
[email protected] 提交于 2021-09-03 14:47 . add conf
package conf
import (
"flag"
)
var (
_env string
_conf_file_path string
_http_addr string
_rpc_addr string
_host string
)
func initCommand(config *Config) {
flag.StringVar(&_env, "e", "", "运行环境:debug-测试、release-正式")
flag.StringVar(&_conf_file_path, "f", "", "配置文件地址")
flag.StringVar(&_http_addr, "ha", "", "http监听地址")
flag.StringVar(&_rpc_addr, "ra", "", "rpc监听地址")
flag.StringVar(&_host,"h","","本机ip地址")
if !flag.Parsed() {
flag.Parse()
}
if _env != "" {
config.SysSetting.Env = _env
}
if _http_addr != "" {
config.SysSetting.HttpAddr = _http_addr
}
if _rpc_addr != "" {
config.SysSetting.RpcAddr = _rpc_addr
}
if _host != "" {
config.SysSetting.Host = _host
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/whilew/core-go.git
[email protected]:whilew/core-go.git
whilew
core-go
core-go
main

搜索帮助