This commit is contained in:
shikong 2024-05-12 17:38:00 +08:00
parent fdffe626e1
commit b22f0fd537

View File

@ -38,7 +38,7 @@ var notification = toast.Notification{
var conf = new(config.Config) var conf = new(config.Config)
func Main() { func readConfig() error {
viper.SetConfigName(constants.ConfigFileName) viper.SetConfigName(constants.ConfigFileName)
viper.SetConfigType(constants.ConfigType) viper.SetConfigType(constants.ConfigType)
for _, path := range constants.ConfigPaths { for _, path := range constants.ConfigPaths {
@ -53,7 +53,11 @@ func Main() {
} }
} }
err := viper.Unmarshal(conf) return viper.Unmarshal(conf)
}
func Main() {
err := readConfig()
if err != nil { if err != nil {
logger.Log().Fatalf("配置文件解析失败: %s, 请检查配置是否有误", err) logger.Log().Fatalf("配置文件解析失败: %s, 请检查配置是否有误", err)
} }