summary refs log tree commit diff
path: root/src/index.ts
blob: 8765d6dc740c014127b4c9f8aef07e466d10202a (plain) (blame)
1
2
3
4
import { Server } from "./Server";

const server = new Server();
server.start().catch(console.error);