package config import "github.com/spf13/viper" func Init() { _ = viper.BindEnv("log_level") viper.AutomaticEnv() viper.SetEnvPrefix("dctl") }