relay/src/index.ts

12 lines
232 B
TypeScript
Raw Normal View History

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