This commit is contained in:
Ajinkya Kulkarni 2024-12-04 20:40:28 +01:00
parent 23e085b70d
commit f2b6dbfadf

View file

@ -24,6 +24,7 @@ async fn get_tcbinfo(fmspc: Fmspc, update: Update) -> Value {
.text()
.await
.expect("could not read https response");
println!("{body}");
let tcbinfo: Value = serde_json::from_str(&body).expect("could not convert to JSON");
tcbinfo
}