seq read config

This commit is contained in:
withchao 2025-02-10 11:28:09 +08:00
parent 8e6448d7a7
commit aebd6d6dd6

View File

@ -47,6 +47,9 @@ func readConfig[T any](dir string, name string) (*T, error) {
dir = os.Getenv(config.MountConfigFilePath)
}
v := viper.New()
v.SetEnvPrefix(config.EnvPrefixMap[name])
v.AutomaticEnv()
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
v.SetConfigFile(filepath.Join(dir, name))
if err := v.ReadInConfig(); err != nil {
return nil, err