blank lines

This commit is contained in:
mightypanders 2023-02-14 15:45:47 +01:00
parent a640af5ed4
commit 962d7b68ef

View File

@ -14,10 +14,12 @@ async fn main() {
let url = format!("{}{}", base_url, route);
println!("{url}");
let client = Client::new();
let req = client
.get(&url)
.query(&[("checked", "false")])
.bearer_auth(api_token);
match req.send().await {
Ok(resolved) => match resolved.status() {
reqwest::StatusCode::OK => {