File size: 280 Bytes
bc0be9c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// main.ts
import { serve } from "https://deno.land/std@0.224.0/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 });