Skip to main content
Module

x/fastro/examples/hook.ts

The Web Framework for Full Stack Apps
Go to Latest
File
import fastro, { Fastro, Info } from "../mod.ts";
const f = new fastro();
f.hook((_f: Fastro, _r: Request, _i: Info) => new Response("Hello World"));
await f.serve();