From f11f1c23c5c9b3e66c0c314bc930da2475300f67 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Fri, 5 Apr 2024 20:07:22 +0100 Subject: [PATCH] Remove unused import and variable declaration in Index.ts --- IsolatedVM/Index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/IsolatedVM/Index.ts b/IsolatedVM/Index.ts index 93ea9f3699..550a49d6e0 100644 --- a/IsolatedVM/Index.ts +++ b/IsolatedVM/Index.ts @@ -1,11 +1,8 @@ -import Express, { ExpressApplication } from 'CommonServer/Utils/Express'; import logger from 'CommonServer/Utils/Logger'; import App from 'CommonServer/Utils/StartServer'; import process from 'process'; import { PromiseVoidFunction } from 'Common/Types/FunctionTypes'; -const app: ExpressApplication = Express.getExpressApp(); - const APP_NAME: string = 'isolated-vm'; const init: PromiseVoidFunction = async (): Promise => {