ipinfo/health.go

11 lines
169 B
Go

package main
import (
"net/http"
)
func healthCheck() {
http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Healthy"))
})
}