Skip to content

Commit 23b7186

Browse files
committed
add interface use
1 parent b703449 commit 23b7186

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/notebooks/deepnote/integrations/integrationStorage.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { IEncryptedStorage } from '../../../platform/common/application/types';
55
import { IAsyncDisposableRegistry } from '../../../platform/common/types';
66
import { logger } from '../../../platform/logging';
77
import { IntegrationConfig, IntegrationType } from './integrationTypes';
8+
import { IIntegrationStorage } from './types';
89

910
const INTEGRATION_SERVICE_NAME = 'deepnote-integrations';
1011

@@ -14,7 +15,7 @@ const INTEGRATION_SERVICE_NAME = 'deepnote-integrations';
1415
* Storage is scoped to the user's machine and shared across all deepnote projects.
1516
*/
1617
@injectable()
17-
export class IntegrationStorage {
18+
export class IntegrationStorage implements IIntegrationStorage {
1819
private readonly cache: Map<string, IntegrationConfig> = new Map();
1920

2021
private cacheLoaded = false;

0 commit comments

Comments
 (0)