From 0e21bdc68781b8c66d12d9d9a56e721cefe1eb2d Mon Sep 17 00:00:00 2001 From: Hri7566 Date: Thu, 19 Sep 2024 20:46:42 -0400 Subject: [PATCH] Move entrypoint --- src/index.ts | 2 +- src/start.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/start.ts diff --git a/src/index.ts b/src/index.ts index 06246b5..d2e6327 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,4 +41,4 @@ export function startServer() { logger.info("Ready"); } -startServer(); +// startServer(); diff --git a/src/start.ts b/src/start.ts new file mode 100644 index 0000000..3a9bd88 --- /dev/null +++ b/src/start.ts @@ -0,0 +1,3 @@ +import { startServer } from "."; + +startServer();