update
parent
a5fe1f32db
commit
26bf8320e3
|
@ -6,20 +6,19 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
vp *viper.Viper
|
||||
vp = viper.New()
|
||||
)
|
||||
|
||||
func Init(confPath string, conf interface{}) {
|
||||
vp = viper.New()
|
||||
vp.SetConfigFile(confPath)
|
||||
func LoadFile(confFile string, conf interface{}) {
|
||||
vp.SetConfigFile(confFile)
|
||||
err := vp.ReadInConfig()
|
||||
if err != nil {
|
||||
panic(fmt.Errorf("读取配置文件失败 %s", err))
|
||||
panic(fmt.Errorf("read file fail: %s", err))
|
||||
}
|
||||
|
||||
err = vp.Unmarshal(conf)
|
||||
if err != nil {
|
||||
panic(fmt.Errorf("解析配置文件失败 %s", err))
|
||||
panic(fmt.Errorf("parse file fail: %s", err))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -20,6 +20,6 @@ func TestConf(t *testing.T) {
|
|||
}
|
||||
|
||||
var config = &Config{}
|
||||
Init("test.yaml", config)
|
||||
LoadFile("test.yaml", config)
|
||||
fmt.Printf("%+v\n", config)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue