From 71141dde6983103e63e879ac33c9ed7c6339f9b5 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sat, 10 Feb 2024 11:04:59 +0200 Subject: [PATCH] aligned healthCheckResponse struct fields --- apis/health.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/health.go b/apis/health.go index 92b913c8..eb108ddb 100644 --- a/apis/health.go +++ b/apis/health.go @@ -21,8 +21,8 @@ type healthApi struct { } type healthCheckResponse struct { - Code int `json:"code"` Message string `json:"message"` + Code int `json:"code"` Data struct { CanBackup bool `json:"canBackup"` } `json:"data"`