2
0

refact rust

This commit is contained in:
2026-03-25 06:34:44 +09:00
parent 3103090c33
commit 1d8224c4bf
5 changed files with 30 additions and 29 deletions

View File

@@ -83,7 +83,7 @@ pub async fn check_versions(networks_path: &str) -> Result<()> {
println!("latest: {}", latest);
println!();
for (name, _network) in &networks {
for name in networks.keys() {
// Check PDS using network name as domain
let url = format!("https://{}/xrpc/_health", name);
let version = match client.get(&url).send().await {