mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
* Move CMS saved servers to be stored in memento instead of config * Add in code to port old servers into memento
23 lines
721 B
TypeScript
23 lines
721 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
import * as vscode from 'vscode';
|
|
import { ApiWrapper } from './apiWrapper';
|
|
import { CmsUtils } from './cmsUtils';
|
|
|
|
/**
|
|
* Global context for the application
|
|
*/
|
|
export class AppContext {
|
|
|
|
constructor(
|
|
public readonly extensionContext: vscode.ExtensionContext,
|
|
public readonly apiWrapper: ApiWrapper,
|
|
public readonly cmsUtils: CmsUtils
|
|
) { }
|
|
}
|