min-report/config/config.go

15 lines
190 B
Go
Raw Normal View History

2023-08-18 09:59:43 +00:00
package config
import (
"github.com/spf13/viper"
)
func InitConfig(configPath string) {
viper.SetConfigFile(configPath)
if err := viper.ReadInConfig(); err != nil {
panic(err)
}
}