Files
MCP-Browser/node_modules/hono/dist/adapter/netlify/handler.js
T
2026-03-25 09:47:08 -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
};