项目文件夹

文件
wehub-resource-sync acb1e552cd
Deploy Worker / Deploy (push) Failing after 4s
chore: import upstream snapshot with attribution
2026-07-13 12:22:23 +08:00

9 行
194 B
JavaScript

//deprecated:
//import {serve} from "https://deno.land/std/http/mod.ts"
import worker from "./src/worker.mjs";
const port = +(Deno.env.get("PORT") ?? 8080);
Deno.serve({port}, worker.fetch);