(w http.ResponseWriter, r *http.Request)
| 16 | } |
| 17 | |
| 18 | func handlerFoo(w http.ResponseWriter, r *http.Request) { |
| 19 | time.Sleep(time.Second) |
| 20 | w.Write([]byte("BAR")) |
| 21 | } |
| 22 | |
| 23 | func handlerBar(w http.ResponseWriter, r *http.Request) { |
| 24 | w.Write([]byte("FOO")) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…