(w http.ResponseWriter, r *http.Request)
| 6 | ) |
| 7 | |
| 8 | func handler(w http.ResponseWriter, r *http.Request) { |
| 9 | fmt.Fprintf(w, "Hello, you've requested: %s\n", r.URL.Path) |
| 10 | } |
| 11 | |
| 12 | func main() { |
| 13 | http.HandleFunc("/", handler) |
nothing calls this directly
no outgoing calls
no test coverage detected