Skip to main content
Module

x/fastro/examples/hello_json.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "../server/mod.ts";
const app = application();
app.get("/", () => ({ text: "Hello json" }));
await app.serve();