blob: b6255d7802ce5adcba93713659fe70f10f11c7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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));
}
|