1 Star 0 Fork 0

zengfanyao / common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mysql.go 437 Bytes
一键复制 编辑 原始数据 按行查看 历史
zengfanyao 提交于 2022-05-05 21:46 . commit
package common
import "github.com/asim/go-micro/v3/config"
type MysqlConfig struct {
Host string `json:"host"`
User string `json:"user"`
Pwd string `json:"pwd"`
Database string `json:"database"`
Port int64 `json:"port"`
}
// 获取mysql的配置
func GetMysqlConsul(config config.Config, path ...string) *MysqlConfig {
mysqlConfig := &MysqlConfig{}
config.Get(path...).Scan(mysqlConfig)
return mysqlConfig
}
1
https://gitee.com/apinktara/common.git
git@gitee.com:apinktara/common.git
apinktara
common
common
master

搜索帮助