2020-12-09 15:31:34 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import "github.com/spf13/viper"
|
|
|
|
|
|
|
|
func Init() {
|
|
|
|
_ = viper.BindEnv("log_level")
|
|
|
|
viper.AutomaticEnv()
|
|
|
|
viper.SetEnvPrefix("dctl")
|
|
|
|
}
|
2022-05-03 09:15:26 +00:00
|
|
|
|
|
|
|
func IsSnyk() bool {
|
|
|
|
return viper.GetBool("IS_SNYK")
|
|
|
|
}
|