(w http.ResponseWriter, r *http.Request)
| 7 | ) |
| 8 | |
| 9 | func handler(w http.ResponseWriter, r *http.Request) { |
| 10 | fmt.Fprintln(w, "Hello, 世界") |
| 11 | } |
| 12 | |
| 13 | func main() { |
| 14 | http.HandleFunc("/", handler) |
nothing calls this directly
no outgoing calls
no test coverage detected