blob: 2cf02afa09ae64ed7c245185e381df2427615e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env node
import * as proxy from './proxy';
import * as globalWorker from './workers/global';
proxy.bootstrap();
// eslint-disable-next-line @typescript-eslint/no-floating-promises
(async (): Promise<void> => {
process.exitCode = await globalWorker.start();
})();
|