MCPcopy Create free account
hub / github.com/IQEngine/IQEngine / getBlobClient

Function getBlobClient

client/src/api/utils/AzureBlob.ts:43–51  ·  view source on GitHub ↗
(
  dataSources: Record<string, DataSource>,
  account: string,
  container: string,
  blobName: string
)

Source from the content-addressed store, hash-verified

41}
42
43export function getBlobClient(
44 dataSources: Record<string, DataSource>,
45 account: string,
46 container: string,
47 blobName: string
48): BlobClient {
49 const containerClient = getContainerClient(dataSources, account, container);
50 return containerClient.getBlobClient(blobName);
51}

Callers 2

getMinimapIQMethod · 0.90
getIQDataBlocksMethod · 0.90

Calls 1

getContainerClientFunction · 0.85

Tested by

no test coverage detected