@@ -0,0 +1,11 @@
package main
import (
"net/http"
)
func healthCheck() {
http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Healthy"))
})
}
The note is not visible to the blocked user.