2022-07-19 22:24:53 +00:00
|
|
|
import {start as startDns} from "./dns.js";
|
|
|
|
import {start as startRpc} from "./rpc.js";
|
|
|
|
import {start as startRelay} from "./relay.js";
|
2022-06-27 17:53:00 +00:00
|
|
|
|
2022-07-04 21:22:48 +00:00
|
|
|
await startDns();
|
|
|
|
await startRpc();
|
|
|
|
await startRelay();
|
2022-06-27 17:53:00 +00:00
|
|
|
|
|
|
|
process.on("uncaughtException", function (err) {
|
2022-07-19 22:24:53 +00:00
|
|
|
console.log("Caught exception: " + err);
|
2022-06-27 17:53:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export {};
|