Fixes golint errors in pkg/healthz

This commit is contained in:
Yuki Sonoda (Yugui) 2014-07-16 21:55:39 +09:00
parent f368e4be68
commit 1395b0fbf0

View File

@ -30,6 +30,7 @@ func handleHealthz(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("ok"))
}
// InstallHandler registers a handler for health checking on the path "/healthz" to mux.
func InstallHandler(mux *http.ServeMux) {
mux.HandleFunc("/healthz", handleHealthz)
}