From 888262851f061e4bfd5cb8a5936c6c0caf3291b4 Mon Sep 17 00:00:00 2001 From: cialloo Date: Sat, 25 Oct 2025 12:10:51 +0800 Subject: [PATCH] fix: update PingResp field name to follow Go naming conventions --- api/ServerStatistics.api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/ServerStatistics.api b/api/ServerStatistics.api index ca1017e..b913927 100644 --- a/api/ServerStatistics.api +++ b/api/ServerStatistics.api @@ -11,7 +11,7 @@ info ( type ( PingReq {} PingResp { - ok bool `json:"ok"` + OK bool `json:"ok"` } )