*Add missing boot call

*Remove module export
This commit is contained in:
Derrick Hammer 2022-07-25 02:50:27 -04:00
parent c76d56b752
commit fca5d8b0a6
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ async function boot() {
await startRelay(); await startRelay();
} }
boot();
process.on("uncaughtException", function (err) { process.on("uncaughtException", function (err) {
console.log("Caught exception: " + err); console.log("Caught exception: " + err);
}); });
export {};