marinea/server/server.ts

9 lines
116 B
TypeScript
Raw Permalink Normal View History

2023-04-01 16:51:48 +00:00
import { App } from "./app.ts";
async function serve() {
const app = new App();
await app.start();
}
serve();