// 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 }); | |