client/
client.rs

1use http_stat::request;
2
3#[tokio::main]
4async fn main() {
5    let stat = request("https://www.baidu.com/".try_into().unwrap()).await;
6    // println!("{:?}", stat);
7    println!("{}", stat);
8}