Remove unused import and variable declaration in Index.ts

This commit is contained in:
Simon Larsen 2024-04-05 20:07:22 +01:00
parent c52501ef0e
commit f11f1c23c5
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE

View File

@ -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<void> => {