clonegur/backend/main.ts

6 lines
156 B
TypeScript
Raw Normal View History

2023-06-29 19:18:52 +00:00
import clonegur from "./clonegur.ts";
const app = await clonegur();
const server = Deno.listen({ port: 4000, hostname: 'localhost' });
app.attach(server);