Update (#2)
songparser / Check (push) Successful in 2m3s
songparser / Rustfmt (push) Successful in 52s
songparser / build (push) Successful in 2m0s
songparser / Clippy (push) Successful in 2m12s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-07-07 22:49:06 -04:00
parent 02cc833cd9
commit 9372b8ea07
9 changed files with 207 additions and 573 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ pub async fn get_token(
let api_url = format!("{}/{endpoint}", app.auth_uri);
let payload = serde_json::json!({
"passphrase": icarus_envy::environment::get_service_passphrase().await.value,
"passphrase": icarus_envy::environment::get_service_passphrase().value,
});
match client.post(api_url).json(&payload).send().await {