Files

10 lines
156 B
JavaScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
// src/adapter/netlify/handler.ts
var handle = (app) => {
return (req, context) => {
return app.fetch(req, { context });
};
};
export {
handle
};