This commit is contained in:
Paul B. Hartzog
2026-09-09 13:09:19 -04:00
commit a4f43d526f
8 changed files with 518 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { CARDS, TAGS } from "./_manifest.js";
import { handler } from "../engine/serve.js";
export default {
fetch: (request, env) => handler(CARDS, TAGS, env.TITLE)
};