Handler returns the main handler.
()
| 165 | |
| 166 | // Handler returns the main handler. |
| 167 | func (c *Context) Handler() HandlerFunc { |
| 168 | return c.handlers.Last() |
| 169 | } |
| 170 | |
| 171 | // FullPath returns a matched route full path. For not found routes |
| 172 | // returns an empty string. |