fix: update PingResp field name to follow Go naming conventions
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 4s

This commit is contained in:
2025-10-25 12:10:51 +08:00
parent d485bb4e66
commit 888262851f

View File

@@ -11,7 +11,7 @@ info (
type (
PingReq {}
PingResp {
ok bool `json:"ok"`
OK bool `json:"ok"`
}
)