parse_file

Function parse_file 

Source
pub fn parse_file<P: AsRef<Path>>(path: P) -> Result<FafFile, FafError>
Expand description

Parse FAF from file path

ยงExample

use faf_sdk::parse_file;

let faf = parse_file("project.faf").unwrap();
println!("Project: {}", faf.project_name());