(w http.ResponseWriter, r *http.Request)
| 12 | ) |
| 13 | |
| 14 | func handler(w http.ResponseWriter, r *http.Request) { |
| 15 | time.Sleep(time.Duration(rand.Intn(2000)) * time.Millisecond) |
| 16 | w.Write([]byte("bar\n")) |
| 17 | } |
| 18 | |
| 19 | func main() { |
| 20 | // endless.DefaultHammerTime = 10*time.Second |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…