// Import polyfill first to ensure WebCrypto API is available

import { Server } from "./server";

async function bootstrap() {
	const server = new Server();
	await server.start();
}

bootstrap();
