x/fastro/examples/ctx_string.ts
12345678910111213import fastro, { Context, HttpRequest } from "../mod.ts";const f = new fastro();f.get( "/", (_req: HttpRequest, ctx: Context) => { return ctx.send("Helo world", 200); },);await f.serve();