Format all code following migration to Rust edition 2024
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 10:23:37 +01:00
parent 44188975ca
commit e9e3103938
20 changed files with 41 additions and 32 deletions

View File

@ -55,12 +55,13 @@ fn main() {
let jwt = key.sign_jwt(&claims).expect("Failed to sign JWT!");
Command::new("curl")
let err = Command::new("curl")
.args(["-X", &args.verb])
.args(["-H", &format!("x-token-id: {}", args.token_id)])
.args(["-H", &format!("x-token-content: {jwt}")])
.args(args.run)
.arg(full_url)
.exec();
panic!("Failed to run curl!")
panic!("Failed to run cURL! {err}")
}