d2a / main.ts
fxlinux's picture
Upload 12 files
bc0be9c verified
raw
history blame contribute delete
280 Bytes
// main.ts
import { serve } from "https://deno.land/[email protected]/http/server.ts";
import { router } from "./router.ts";
import { CONFIG } from "./utils.ts";
console.log(`πŸš€ ζœεŠ‘ε™¨ε―εŠ¨εœ¨η«―ε£ ${CONFIG.PORT}`);
serve((req: Request) => router(req), { port: CONFIG.PORT });