2 Star 1 Fork 1

mosache/YFrame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
conf.go 703 Bytes
一键复制 编辑 原始数据 按行查看 历史
ヤ沒脩袮兲︶ 提交于 2024-01-08 18:35 . temp
package conf
import (
"gopkg.in/yaml.v2"
"os"
)
type Configuration struct {
UserName string `yaml:"username"`
Password string `yaml:"password"`
Host string `yaml:"host"`
Port int64 `yaml:"port"`
DataBase string `yaml:"database"`
ModName string `yaml:"modname"`
}
var (
Config *Configuration
)
func InitConf(confFilePath string) error {
if len(confFilePath) == 0 {
confFilePath = "./gomg.yaml"
}
_, err := os.Stat(confFilePath)
/// 配置文件不存在或读取出错
if err != nil {
return err
}
bytes, err := os.ReadFile(confFilePath)
if err != nil {
return err
}
err = yaml.UnmarshalStrict(bytes, &Config)
if err != nil {
return err
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mosache/YFrame.git
git@gitee.com:mosache/YFrame.git
mosache
YFrame
YFrame
v0.1.94

搜索帮助