(w http.ResponseWriter, r *http.Request)
| 10 | ) |
| 11 | |
| 12 | func handler(w http.ResponseWriter, r *http.Request) { |
| 13 | w.Write([]byte("WORLD!")) |
| 14 | } |
| 15 | |
| 16 | func main() { |
| 17 | mux1 := mux.NewRouter() |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…