From fca5d8b0a6e771f70f016f8906fe7529eb2279b1 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 25 Jul 2022 02:50:27 -0400 Subject: [PATCH] *Add missing boot call *Remove module export --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 338d6fb..abbddb1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,8 +10,8 @@ async function boot() { await startRelay(); } +boot(); + process.on("uncaughtException", function (err) { console.log("Caught exception: " + err); }); - -export {};