x/fastro/examples/static_file_image.ts
12345678import fastro from "../mod.ts";const f = new fastro();f.static("/static", { folder: "static", maxAge: 90 });await f.serve();