| 20 | ) |
| 21 | |
| 22 | type Result interface { |
| 23 | Apply(req *Request, resp *Response) |
| 24 | } |
| 25 | |
| 26 | // ErrorResult structure used to handles all kinds of error codes (500, 404, ..). |
| 27 | // It renders the relevant error page (errors/CODE.format, e.g. errors/500.json). |
no outgoing calls
no test coverage detected