From 2e23be1585c2d2251c9d5b6816a8119b41d4e9cc Mon Sep 17 00:00:00 2001 From: Hide_D Date: Fri, 8 Mar 2024 11:35:19 +0000 Subject: [PATCH] =?UTF-8?q?=ED=99=95=EC=9E=A5=EC=9E=90=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- @sammo/server/src/worker_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@sammo/server/src/worker_test.ts b/@sammo/server/src/worker_test.ts index 57e1ad9..269c875 100644 --- a/@sammo/server/src/worker_test.ts +++ b/@sammo/server/src/worker_test.ts @@ -6,8 +6,8 @@ console.log("Hello from worker_test.ts!"); const __filename = fileURLToPath(new URL(import.meta.url)); const __dirname = nodePath.dirname(__filename); -const worker_b_ts = nodePath.join(__dirname, "worker_b.ts"); -const worker_a_ts = nodePath.join(__dirname, "worker_a.ts"); +const worker_b_ts = nodePath.join(__dirname, "worker_b"); +const worker_a_ts = nodePath.join(__dirname, "worker_a"); const worker_b = new Worker(worker_b_ts); const worker_a = new Worker(worker_a_ts);