golang 解析yaml文件
初始化
package main
import (
"github.com/spf13/viper"
)
func initConfig() {
viper.SetConfigName("config")
viper.AddConfigPath("./")
if err := viper.ReadInConfig(); err != nil {
fmt.Println("Init seting error:", err)
}
}
package main
import (
"github.com/spf13/viper"
)
func initConfig() {
viper.SetConfigName("config")
viper.AddConfigPath("./")
if err := viper.ReadInConfig(); err != nil {
fmt.Println("Init seting error:", err)
}
}