mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-20 12:00:24 -04:00
19 lines
671 B
TypeScript
19 lines
671 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import MergeConflictServices from './services';
|
|
|
|
export function activate(context: vscode.ExtensionContext) {
|
|
// Register disposables
|
|
const services = new MergeConflictServices(context);
|
|
services.begin();
|
|
context.subscriptions.push(services);
|
|
}
|
|
|
|
export function deactivate() {
|
|
}
|
|
|