This commit is contained in:
spv 2024-08-24 00:22:26 +02:00
parent 925e205c8a
commit f9f912b4fb
No known key found for this signature in database
GPG Key ID: 7638A987CE28ADFA

View File

@ -1,3 +1,6 @@
use reqwest;
use tokio;
async fn get_qs() -> reqwest::Result<Vec<String>> {
let body = reqwest::get("https://stackoverflow.com/questions/tagged/python").await;
if let Err(e) = body {