Fetch python questions page 1
This commit is contained in:
parent
154c03cc98
commit
925e205c8a
15
src/main.rs
15
src/main.rs
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user