accounts-profiles-endpoint/internal/cmd/init.go
2024-10-01 01:41:29 +02:00

16 lines
202 B
Go

package cmd
import (
"strings"
"github.com/spf13/viper"
)
func initConfig() *viper.Viper {
v := viper.GetViper()
v.AutomaticEnv()
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
return v
}