Files
avz-site/node_modules/hono/dist/adapter/netlify/handler.js
T
2026-06-10 12:38:42 -03:00

10 lines
156 B
JavaScript

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