SetPath sets the registered path for the handler.
(p string)
| 263 | |
| 264 | // SetPath sets the registered path for the handler. |
| 265 | func (c *Context) SetPath(p string) { |
| 266 | c.path = p |
| 267 | } |
| 268 | |
| 269 | // RouteInfo returns current request route information. Method, Path, Name and params if they exist for matched route. |
| 270 | // |
no outgoing calls