(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc)
| 23 | // If the Handler writes to the ResponseWriter, the next http.HandlerFunc should not be invoked. |
| 24 | type Handler interface { |
| 25 | ServeHTTP(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) |
| 26 | } |
| 27 | |
| 28 | // HandlerFunc is an adapter to allow the use of ordinary functions as Negroni handlers. |
no outgoing calls