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