From 449238f0a8da74b65d88f55604ec1d109b1308e5 Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Mon, 6 Jul 2026 09:28:55 +0200 Subject: [PATCH] Changed /health response to lowercase --- internal/api/handler/health.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }