Implementing AWS Lambda with `effect-http` Similar to `hono`
Is there a way to do something similar to this with
effect-http?effect-httpimport { Hono } from "hono";
import { handle } from "hono/aws-lambda";
const app = new Hono().get("/", async (c) => {
return c.text("Hello, world!");
});
export const handler = handle(app);