(r *strings.Replacer)
| 1408 | func SetEnvKeyReplacer(r *strings.Replacer) { v.SetEnvKeyReplacer(r) } |
| 1409 | |
| 1410 | func (v *Viper) SetEnvKeyReplacer(r *strings.Replacer) { |
| 1411 | v.envKeyReplacer = r |
| 1412 | } |
| 1413 | |
| 1414 | // RegisterAlias creates an alias that provides another accessor for the same key. |
| 1415 | // This enables one to change a name without breaking the application. |
no outgoing calls