From da15da800c4f65d1b3e0cbfcce69e05d6b75a1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8E=AF=E5=87=9B?= Date: Thu, 8 Jan 2026 15:05:02 +0800 Subject: [PATCH] chore: 1.53 is still 404 --- sdgb-cli/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sdgb-cli/src/main.rs b/sdgb-cli/src/main.rs index ed259f6..25c5e39 100644 --- a/sdgb-cli/src/main.rs +++ b/sdgb-cli/src/main.rs @@ -178,7 +178,14 @@ async fn main() -> Result<(), Box> { } Commands::Ping => { 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 = Sdgb1_53::request(&client, APIMethod::Ping, "", Ping {}).await?; info!(