6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
import clonegur from "./clonegur.ts";
|
|
|
|
const app = await clonegur();
|
|
const server = Deno.listen({ port: 4000, hostname: 'localhost' });
|
|
app.attach(server);
|