(w http.ResponseWriter, r *http.Request)
| 528 | } |
| 529 | |
| 530 | func hello(w http.ResponseWriter, r *http.Request) { |
| 531 | render.Status(r, http.StatusOK) |
| 532 | render.PlainText(w, r, "Hello to visit git-proxy") |
| 533 | } |
| 534 | |
| 535 | func setContext(next http.Handler) http.Handler { |
| 536 | return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
nothing calls this directly
no outgoing calls
no test coverage detected