Implementing AWS Lambda with `effect-http` Similar to `hono`

Is there a way to do something similar to this with effect-http?
import { 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);
Was this page helpful?