Path: blob/main/src/vs/sessions/sessions.web.main.internal.ts
13383 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45// This file is the web embedder entry point for the Sessions workbench.6// It mirrors workbench.web.main.internal.ts but loads the sessions entry7// point and factory instead of the standard workbench ones.89import './sessions.web.main.js';10import { create } from './browser/web.factory.js';11import { URI } from '../base/common/uri.js';12import { Event, Emitter } from '../base/common/event.js';13import { Disposable } from '../base/common/lifecycle.js';14import { LogLevel } from '../platform/log/common/log.js';1516export {17create,18URI,19Event,20Emitter,21Disposable,22LogLevel,23};242526