fn parse_ini_file(
path: &Path,
) -> Result<HashMap<String, HashMap<String, String>>, AppError>Expand description
Parse an INI file at path, returning a HashMap<section_name, key_values>.
Returns an empty map (not an error) when the file does not exist.