(w http.ResponseWriter, r *http.Request)
| 12 | } |
| 13 | |
| 14 | func handle(w http.ResponseWriter, r *http.Request) { |
| 15 | log.Println("Received a request at my domain") |
| 16 | w.Write([]byte("Hello, Domain name!")) |
| 17 | } |
| 18 | |
| 19 | func main() { |
| 20 | router := http.NewServeMux() |
nothing calls this directly
no outgoing calls
no test coverage detected