Changed /health response to lowercase

This commit is contained in:
Robin Dittmar
2026-07-06 09:29:48 +02:00
parent 449238f0a8
commit 3259d07f22
+1
View File
@@ -11,6 +11,7 @@ type healthResponse struct {
} }
func HealthHandler(w http.ResponseWriter, r *http.Request) { func HealthHandler(w http.ResponseWriter, r *http.Request) {
_ = r
resp := healthResponse{ resp := healthResponse{
Status: "ok", Status: "ok",
} }