From 9f82b882193a123eba68e1df8496ff73a4b33fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8E=AF=E5=87=9B?= Date: Thu, 8 Jan 2026 14:54:25 +0800 Subject: [PATCH] chore: upgrade ping to maimai DX 1.53 --- sdgb-cli/src/main.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sdgb-cli/src/main.rs b/sdgb-cli/src/main.rs index 079af08..ed259f6 100644 --- a/sdgb-cli/src/main.rs +++ b/sdgb-cli/src/main.rs @@ -178,12 +178,6 @@ 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 decoded: PingResp = Sdgb1_53::request(&client, APIMethod::Ping, "", Ping {}).await?;