Skip to main content
Module

x/fastro/examples/raw_json.ts

The Web Framework for Full Stack Apps
Go to Latest
File
import fastro from "../mod.ts";
const f = new fastro();
f.get("/", () => ({ text: "Hello json" }));
await f.serve();