X-Git-Url: https://git.josue.xyz/?p=VSCPweb%2F.git;a=blobdiff_plain;f=handlers%2Fhealth%2FhealthHandlers.go;fp=handlers%2Fhealth%2FhealthHandlers.go;h=81d0525d54a08e05ae7f3b3159d406b6d6f535f1;hp=7e054da0cbb3248b568026438f35b4087d0b25f8;hb=7efb6f34fd2a35406dd55873fff78ac875896781;hpb=a49b19ea760f5c6493e0145320f2bf37dd3a96ca diff --git a/handlers/health/healthHandlers.go b/handlers/health/healthHandlers.go index 7e054da..81d0525 100644 --- a/handlers/health/healthHandlers.go +++ b/handlers/health/healthHandlers.go @@ -17,5 +17,6 @@ import ( // the special agent that each of them will already have installed in order to // connect to the cluster. func MasterHealthHandler(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf("Ëverything should be okay my boi") + w.WriteHeader(http.StatusOK) + fmt.Fprintf(w, "Ëverything should be okay my boi") }