@eclipse-emfcloud/modelserver-markers-theia
Version:
18 lines (15 loc) • 767 B
text/typescript
/********************************************************************************
* Copyright (c) 2021-2022 CS GROUP - France and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0, or the MIT License which is
* available at https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: EPL-2.0 OR MIT
*******************************************************************************/
import { ContainerModule } from '@theia/core/shared/inversify';
import { DiagnosticManager } from './diagnostic-manager';
export default new ContainerModule(bind => {
bind(DiagnosticManager).toSelf().inSingletonScope();
});