(w http.ResponseWriter, r *http.Request, _ caddyhttp.Handler)
| 75 | } |
| 76 | |
| 77 | func (p *ImageProxy) ServeHTTP(w http.ResponseWriter, r *http.Request, _ caddyhttp.Handler) error { |
| 78 | p.proxy.ServeHTTP(w, r) |
| 79 | return nil |
| 80 | } |
| 81 | |
| 82 | func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) { |
| 83 | p := new(ImageProxy) |
nothing calls this directly
no outgoing calls
no test coverage detected