Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/git/browser/git.contributions.ts
13401 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 { InstantiationType, registerSingleton } from '../../../../platform/instantiation/common/extensions.js';
7
import { IGitService } from '../common/gitService.js';
8
import { GitService } from './gitService.js';
9
10
registerSingleton(IGitService, GitService, InstantiationType.Delayed);
11
12