mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-17 12:35:56 +01:00
14 lines
764 B
TypeScript
14 lines
764 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import { SQLiteSlottedCache } from './cache';
|
|
import { CacheableChatRequest, CachedResponse, IChatMLCache } from './cachingChatMLFetcher';
|
|
import { CurrentTestRunInfo } from './simulationContext';
|
|
|
|
export class ChatMLSQLiteCache extends SQLiteSlottedCache<CacheableChatRequest, CachedResponse> implements IChatMLCache {
|
|
constructor(salt: string, info: CurrentTestRunInfo) {
|
|
super('request', salt, info);
|
|
}
|
|
}
|