//Import the server module import { serve } from "https://deno.land/std/http/server.ts"; // serve on port 5000 const s = serve({ port: 5000 }); ...
確定! 回上一頁