Response returns `*Response`.
()
| 175 | |
| 176 | // Response returns `*Response`. |
| 177 | func (c *Context) Response() http.ResponseWriter { |
| 178 | return c.response |
| 179 | } |
| 180 | |
| 181 | // SetResponse sets `*http.ResponseWriter`. Some context methods and/or middleware require that given ResponseWriter implements following |
| 182 | // method `Unwrap() http.ResponseWriter` which eventually should return *echo.Response instance. |
no outgoing calls