Skip to main content
Module

x/fastro/examples/raw_string.ts

The Web Framework for Full Stack Apps
Go to Latest
File
import { ConnInfo } from "../http/deps.ts";import fastro from "../mod.ts";
const f = new fastro();
f.get("/", (_req: Request, _info: ConnInfo) => { return new Response("Hello, World!");});
await f.serve();