Files
moreminimore-redesign/demos/playground/src/worker.ts
Matt Kane 2e863566b3 Fix scope
2026-04-01 10:58:32 +01:00

15 lines
368 B
TypeScript

/**
* Playground Worker Entrypoint
*
* Exports:
* - default: Astro handler
* - EmDashPreviewDB: Durable Object class for playground databases
*/
import handler from "@astrojs/cloudflare/entrypoints/server";
// Export the DO class so Cloudflare can instantiate it
export { EmDashPreviewDB } from "@emdash-cms/cloudflare/db/playground";
export default handler;