mod barbfile; use jsonformat::{format_json, Indentation}; use std::fs; use std::str::FromStr; use ureq; fn main() { let bfile = barbfile::BarbFile::from_str( fs::read_to_string("test.barb") .expect("Failed to read file") .as_str(), ) .expect("Failed to parse file"); let result = ureq::request(bfile.method_as_string().as_str(), &bfile.url()) .call() .unwrap() .into_string() .unwrap(); println!("{}", format_json(result.as_str(), Indentation::Default)); }