Route
Returns the matched Route struct.
c.Route() *Route
// http://localhost:8080/hello
handler := func(c *fiber.Ctx) {
r := c.Route()
fmt.Println(r.Method, r.Path, r.Params, r.Handlers)
// GET /hello/:name handler [name]
}
app.Get("/hello/:name", handler )