import { type Handler } from "https://deno.land/x/fastro@v0.84.23/mod.ts";
Handle http request
Example:
const handler = (req: Request, ctx: Context) => {
return ctx.send("Hello")
}
definition: (req: HttpRequest, ctx: Context) =>
import { type Handler } from "https://deno.land/x/fastro@v0.84.23/mod.ts";
Handle http request
Example:
const handler = (req: Request, ctx: Context) => {
return ctx.send("Hello")
}