feat(nbstore): add cloud indexer storage (#12245)

close AF-2613
This commit is contained in:
fengmk2
2025-05-19 04:39:39 +00:00
parent a34c3ea200
commit 4e37a1322e
4 changed files with 174 additions and 8 deletions

View File

@@ -3,11 +3,13 @@ import { CloudAwarenessStorage } from './awareness';
import { CloudBlobStorage } from './blob';
import { CloudDocStorage } from './doc';
import { StaticCloudDocStorage } from './doc-static';
import { CloudIndexerStorage } from './indexer';
export * from './awareness';
export * from './blob';
export * from './doc';
export * from './doc-static';
export * from './indexer';
export * from './socket';
export const cloudStorages = [
@@ -15,4 +17,5 @@ export const cloudStorages = [
StaticCloudDocStorage,
CloudBlobStorage,
CloudAwarenessStorage,
CloudIndexerStorage,
] satisfies StorageConstructor[];