From 02364e826888a11959f71ce5e6faf48ee1bb3419 Mon Sep 17 00:00:00 2001 From: zomborip Date: Sun, 5 Oct 2025 21:43:57 +0200 Subject: [PATCH] Endpoint change --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index bdd9065..9d649bc 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ type AddResponse struct { func healthHandler(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "application/json") - json.NewEncoder(w).Encode(HealthResponse{Status: "ok"}) + json.NewEncoder(w).Encode(HealthResponse{Status: "healthy"}) } func addHandler(w http.ResponseWriter, r *http.Request) {