Path
Contains the path part of the request URL. Optionally, you could override the path by passing a string.
func (c *Ctx) Path(override ...string) string
// GET http://example.com/users?sort=desc
app.Get("/users", func(c *fiber.Ctx) error {
c.Path() // "/users"
c.Path("/john")
c.Path() // "/john"
// ...
})