(w http.ResponseWriter, r *http.Request)
| 7 | ) |
| 8 | |
| 9 | func handleOther(w http.ResponseWriter, r *http.Request) { |
| 10 | log.Println("Received a non domain request") |
| 11 | w.Write([]byte("Hello, stranger...")) |
| 12 | } |
| 13 | |
| 14 | func handle(w http.ResponseWriter, r *http.Request) { |
| 15 | log.Println("Received a request at my domain") |
nothing calls this directly
no outgoing calls
no test coverage detected