clonegur/backend/main.ts

6 lines
154 B
TypeScript
Raw Normal View History

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