diff --git a/internal/api/handler/health.go b/internal/api/handler/health.go index 685f9c2..2e5deac 100644 --- a/internal/api/handler/health.go +++ b/internal/api/handler/health.go @@ -12,7 +12,7 @@ type healthResponse struct { func HealthHandler(w http.ResponseWriter, r *http.Request) { resp := healthResponse{ - Status: "OK", + Status: "ok", } response.JSON(w, http.StatusOK, resp) }