chore: 1.53 is still 404

This commit is contained in:
2026-01-08 15:05:02 +08:00
parent 9f82b88219
commit da15da800c

View File

@@ -178,7 +178,14 @@ async fn main() -> Result<(), Box<dyn snafu::Error>> {
} }
Commands::Ping => { Commands::Ping => {
let time = SystemTime::now(); let time = SystemTime::now();
let decoded: PingResp =
Sdgb1_50::request(&client, APIMethod::Ping, "", Ping {}).await?;
info!(
"sdgb 1.50 resp: {decoded}, {}ms",
time.elapsed().unwrap_or_default().as_millis()
);
let time = SystemTime::now();
let decoded: PingResp = let decoded: PingResp =
Sdgb1_53::request(&client, APIMethod::Ping, "", Ping {}).await?; Sdgb1_53::request(&client, APIMethod::Ping, "", Ping {}).await?;
info!( info!(