Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/merge-conflict/src/mergeConflictMain.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 * as vscode from 'vscode';
7
import MergeConflictServices from './services';
8
9
export function activate(context: vscode.ExtensionContext) {
10
// Register disposables
11
const services = new MergeConflictServices(context);
12
services.begin();
13
context.subscriptions.push(services);
14
}
15
16
export function deactivate() {
17
}
18
19
20