1 Star 0 Fork 0

坐公交也用券/ddns-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 445 Bytes
一键复制 编辑 原始数据 按行查看 历史
package model
import (
"fmt"
"gitee.com/liumou_site/gf"
"gitee.com/liumou_site/logger"
"github.com/BurntSushi/toml"
"os"
)
func (l *Login) ConfigGet() {
f := gf.NewFile(l.ConfigFile)
f.IsFile()
if !f.IsFiles {
logger.Error(fmt.Sprintf("找不到配置文件: %s", l.ConfigFile))
os.Exit(2)
}
if _, err := toml.DecodeFile(l.ConfigFile, &l.Domain); err != nil {
logger.Error("配置文件解析错误: ", err)
os.Exit(3)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/liumou_site/ddns-go.git
git@gitee.com:liumou_site/ddns-go.git
liumou_site
ddns-go
ddns-go
47d47fdaad84

搜索帮助