relay/src/index.ts

14 lines
308 B
TypeScript
Raw Normal View History

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