package handler import "net/http" func Health(w http.ResponseWriter, _ *http.Request) { w.WriteHeader(http.StatusOK) if _, err := w.Write([]byte("OK")); err != nil { http.Error(w, "failed to write response", http.StatusInternalServerError) } }