pub const KEY_ALIASES: &[(&str, &str)];Expand description
Key aliases to pass to ConfigurationLoader::with_key_aliases.
Each entry maps a nested dot-separated path to a flat key name. When the nested path is found in a loaded config file, its value is also emitted under the flat key — but only if the flat key is not already explicitly set. This ensures both YAML nested format and flat env var format produce the same Figment key, so source precedence (env vars > file) works correctly.