Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/services/integrity/browser/integrityService.ts
3296 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { IIntegrityService, IntegrityTestResult } from '../common/integrity.js';
7
import { InstantiationType, registerSingleton } from '../../../../platform/instantiation/common/extensions.js';
8
9
export class IntegrityService implements IIntegrityService {
10
11
declare readonly _serviceBrand: undefined;
12
13
async isPure(): Promise<IntegrityTestResult> {
14
return { isPure: true, proof: [] };
15
}
16
}
17
18
registerSingleton(IIntegrityService, IntegrityService, InstantiationType.Delayed);
19
20