(w http.ResponseWriter, r *http.Request)
| 19 | } |
| 20 | |
| 21 | func handler(w http.ResponseWriter, r *http.Request) { |
| 22 | fmt.Fprintf(w, "Hello, Tracing!") |
| 23 | } |
| 24 | |
| 25 | func main() { |
| 26 | http.HandleFunc("/", TraceHandler(handler)) |
nothing calls this directly
no outgoing calls
no test coverage detected