source repo import

This commit is contained in:
cloudflare[bot]
2026-01-12 05:55:32 +00:00
commit 30bc859948
21 changed files with 2636 additions and 0 deletions

9
api/vercel_index.js Normal file
View File

@@ -0,0 +1,9 @@
import { handleRequest } from "../src/handle_request.js";
export const config = {
runtime: 'edge' //告诉 Vercel 这是 Edge Function
};
export default async function handler(req) {
return handleRequest(req);
}