Files
my_site/node_modules/hono/dist/adapter/netlify/handler.js
2026-03-24 14:30:59 +08:00

10 lines
156 B
JavaScript

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