TreasureTrails/node_modules/hono/dist/adapter/service-worker/index.js

12 lines
214 B
JavaScript
Raw Normal View History

2026-03-18 09:02:21 -05:00
// src/adapter/service-worker/index.ts
import { handle } from "./handler.js";
var fire = (app, options = {
fetch: void 0
}) => {
addEventListener("fetch", handle(app, options));
};
export {
fire,
handle
};