Path: blob/main/src/vs/workbench/services/integrity/browser/integrityService.ts
3296 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*--------------------------------------------------------------------------------------------*/45import { IIntegrityService, IntegrityTestResult } from '../common/integrity.js';6import { InstantiationType, registerSingleton } from '../../../../platform/instantiation/common/extensions.js';78export class IntegrityService implements IIntegrityService {910declare readonly _serviceBrand: undefined;1112async isPure(): Promise<IntegrityTestResult> {13return { isPure: true, proof: [] };14}15}1617registerSingleton(IIntegrityService, IntegrityService, InstantiationType.Delayed);181920