Use `c.Attachment("./test.txt")`, the download file is 0 bytes. The source file has content, but the download does not ```go app.Get("/files/test", func(c *fiber.Ctx) { c.Attachment("./test.txt") }) ```