From 3259d07f2217a84b88584588ef37e9ad22811eed Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Mon, 6 Jul 2026 09:29:48 +0200 Subject: [PATCH] Changed /health response to lowercase --- internal/api/handler/health.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/api/handler/health.go b/internal/api/handler/health.go index 2e5deac..9c1561e 100644 --- a/internal/api/handler/health.go +++ b/internal/api/handler/health.go @@ -11,6 +11,7 @@ type healthResponse struct { } func HealthHandler(w http.ResponseWriter, r *http.Request) { + _ = r resp := healthResponse{ Status: "ok", }