2023-05-13 14:54:41 -04:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
2023-05-13 15:15:06 -04:00
|
|
|
let res = reqwest::get("https://api.thecatapi.com/v1/images/search")
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
println!("Status: {}", res.status());
|
|
|
|
let body = res.text().await.unwrap();
|
|
|
|
println!("Body: {}", body);
|
2023-05-13 14:54:41 -04:00
|
|
|
}
|