update
parent
f17cf17e4f
commit
ebf5c21cde
|
@ -20,7 +20,15 @@ func LoadFlag() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadFile(confFile string, conf interface{}) {
|
func LoadFile(confFile string) {
|
||||||
|
vp.SetConfigFile(confFile)
|
||||||
|
err := vp.ReadInConfig()
|
||||||
|
if err != nil {
|
||||||
|
panic(fmt.Errorf("read file fail: %s", err))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func LoadFileTo(confFile string, conf interface{}) {
|
||||||
vp.SetConfigFile(confFile)
|
vp.SetConfigFile(confFile)
|
||||||
err := vp.ReadInConfig()
|
err := vp.ReadInConfig()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue