Changed /health response to lowercase

This commit is contained in:
Robin Dittmar
2026-07-06 09:28:55 +02:00
parent 5325e04a30
commit 449238f0a8
+1 -1
View File
@@ -12,7 +12,7 @@ type healthResponse struct {
func HealthHandler(w http.ResponseWriter, r *http.Request) { func HealthHandler(w http.ResponseWriter, r *http.Request) {
resp := healthResponse{ resp := healthResponse{
Status: "OK", Status: "ok",
} }
response.JSON(w, http.StatusOK, resp) response.JSON(w, http.StatusOK, resp)
} }