pub mod content_disposition;
#[allow(unused)]
#[cfg(test)]
mod test {
#[test]
#[ignore]
fn test_reqwest_https() {
let url = "https://www.baidu.com";
let client = reqwest::blocking::Client::new();
let res = client.get(url).send().expect("send request failed");
println!("{}", res.text().expect("get response failed"));
}
}