X-Git-Url: https://git.josue.xyz/?p=VSCPweb%2F.git;a=blobdiff_plain;f=handlers%2Fstatic%2FstaticHandlers.go;fp=handlers%2Fstatic%2FstaticHandlers.go;h=51cd2b3b3bdc495f50690a2de6c9db98fd72f49a;hp=7b182dbd38540dddad1016648e3489b91ad5f3de;hb=0c430bc2b5d3ca0ceb0d35271fc7665fb1b1f447;hpb=e811634060c856248c7c73f49f75df9a50efe0bc diff --git a/handlers/static/staticHandlers.go b/handlers/static/staticHandlers.go index 7b182db..51cd2b3 100644 --- a/handlers/static/staticHandlers.go +++ b/handlers/static/staticHandlers.go @@ -13,6 +13,7 @@ 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") }