package server import ( "fmt" "net/http" ) func healthHandler(w http.ResponseWriter, r *http.Request) { if r.URL.Path != "/health" { errorHandler(w, r, http.StatusNotFound) return } fmt.Fprint(w, "TODO") }