( rw http.ResponseWriter, req *http.Request, )
| 30 | } |
| 31 | |
| 32 | func (ca *Adapter) ServeHTTP( |
| 33 | rw http.ResponseWriter, req *http.Request, |
| 34 | ) { |
| 35 | ca.Handler.ServeHTTPContext(ca.Ctx, rw, req) |
| 36 | } |
| 37 | |
| 38 | // StripPrefix strips a prefix from the request URL |
| 39 | func StripPrefix(prefix string, h Handler) Handler { |