Files
test/_node_modules/hono/dist/adapter/netlify/handler.js
2026-02-20 16:06:40 +09:00

10 lines
156 B
JavaScript

// src/adapter/netlify/handler.ts
var handle = (app) => {
return (req, context) => {
return app.fetch(req, { context });
};
};
export {
handle
};