Add Cloudflare signing key contract

This commit is contained in:
2026-05-07 23:58:36 -04:00
parent 90c5110d6c
commit 1013a22915
12 changed files with 1854 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { Env } from "./bindings.js";
export default {
fetch(_request: Request, _env: Env): Response {
return new Response("Not Found", { status: 404 });
},
};