deploy("data.arrow", async (req, res) => {
res.header("Cache-control", `public, max-age=${1 * 3600}`);
res.header("Content-Type", "application/octet-stream");
res.header("Content-Disposition", `attachment; filename="data.arrow"`);
res.send(aq.from(data).toArrowBuffer());
})