1 Star 0 Fork 0

温昌寿 / common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.go 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2022-11-14 23:37 . update
package common
import (
"strconv"
"github.com/asim/go-micro/plugins/config/source/consul/v3"
"github.com/asim/go-micro/v3/config"
)
func GetConsulConfig(host string, port int64, prefix string) (config.Config, error) {
consulSource := consul.NewSource(
consul.WithAddress(
host+":"+strconv.FormatInt(port, 10)),
consul.WithPrefix(prefix),
consul.StripPrefix(true),
)
conf, err := config.NewConfig()
if err != nil {
return conf, err
}
err = conf.Load(consulSource)
return conf, err
}
1
https://gitee.com/wenchangshou/common.git
git@gitee.com:wenchangshou/common.git
wenchangshou
common
common
master

搜索帮助