Path: blob/main/extensions/copilot/src/platform/endpoint/node/capiClientImpl.ts
13400 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { IEnvService } from '../../env/common/envService';6import { IFetcherService } from '../../networking/common/fetcherService';7import { BaseCAPIClientService } from '../common/capiClient';89export class CAPIClientImpl extends BaseCAPIClientService {1011constructor(12@IFetcherService fetcherService: IFetcherService,13@IEnvService envService: IEnvService14) {15super(16process.env.HMAC_SECRET,17process.env.VSCODE_COPILOT_INTEGRATION_ID,18fetcherService,19envService20);21}22}2324