代码拉取完成,页面将自动刷新
package cfg
import (
"fmt"
"gitee.com/zhucheer/cfg"
"gitee.com/zhucheer/orange/utils"
)
var Config = cfg.New("")
var ConfigDef = cfg.New("")
func init() {
NewFlagParam()
// 注册配置文件参数
SetStringFlag("config", "./config/config.toml", "config file path")
}
func StartConfig() {
configPath := GetStringFlag("config")
if isFile, _ := utils.FileExists(configPath); isFile == false {
fmt.Println(fmt.Sprintf("\033[0;33m%v \033[0m", "[WARNING] "+configPath+" not found, please check the config path"))
Config = cfg.NewTomlData(defaultConfig)
} else {
Config = cfg.New(configPath)
}
if Config == nil {
panic("config init failed")
}
// 加载默认配置对象
ConfigDef = cfg.NewTomlData(defaultConfig)
}
// 门面方法快速调用
// GetString 获取字符型配置
func GetString(key string, defaultVal string) string {
if Config.Exists(key) {
return Config.GetString(key)
}
return defaultVal
}
// GetInt 获取int类型配置
func GetInt(key string, defaultVal int) int {
if Config.Exists(key) {
return Config.GetInt(key)
}
return defaultVal
}
// GetBool 获取bool类型配置
func GetBool(key string, defaultVal bool) bool {
if Config.Exists(key) {
return Config.GetBool(key)
}
return defaultVal
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。