pub fn load_config_with_default<T>( get_env_var: impl Fn(&str) -> Option<String>, key: &str, default: T, ) -> Twhere T: FromStr, <T as FromStr>::Err: Debug,
Load a configuration value from the environment with a default.