If fiber.Ctx will be interface , we can customize it.
Example
type CustomCtx struct {
fiber.Ctx
}
func (c *CustomCtx) Foo() {
println("foo")
}
func (c *CustomCtx) Bar() {
println("bar")
}
app.Get("/", func(c CustomCtx) error {
c.Foo()
c.Bar()
return c.JSON("")
})