Status
Sets the HTTP status for the response.
Method is a chainable.
func (c *Ctx) Status(status int) *Ctx
app.Get("/", func(c *fiber.Ctx) error {
c.Status(200)
return nil
return c.Status(400).Send("Bad Request")
return c.Status(404).SendFile("./public/gopher.png")
})