fix: use int for status in healthcheck cmd

This commit is contained in:
Stavros
2026-04-01 16:12:06 +03:00
parent cec0a7327a
commit 08e6b84615

View File

@@ -14,7 +14,7 @@ import (
) )
type healthzResponse struct { type healthzResponse struct {
Status string `json:"status"` Status int `json:"status"`
Message string `json:"message"` Message string `json:"message"`
} }