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