Files
vscode/src/vs/platform/profiling/electron-browser/profileAnalysisWorkerMain.ts
T
2025-06-09 07:08:43 +00:00

10 lines
523 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { create } from './profileAnalysisWorker.js';
import { bootstrapWebWorker } from '../../../base/common/worker/webWorkerBootstrap.js';
bootstrapWebWorker(create);