Fetch python questions page 1

This commit is contained in:
Gabriel Tofvesson 2024-08-24 00:20:23 +02:00
parent 154c03cc98
commit 925e205c8a

View File

@ -1,3 +1,14 @@
fn main() {
println!("Hello, world!");
async fn get_qs() -> reqwest::Result<Vec<String>> {
let body = reqwest::get("https://stackoverflow.com/questions/tagged/python").await;
if let Err(e) = body {
return Err(e);
}
println!(body);
Ok(vec![])
}
#[tokio::main]
async fn main() {
get_qs().await;
}