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

Method get

client/src/api/datasource/blob-client.ts:31–37  ·  view source on GitHub ↗
(account: string, container: string)

Source from the content-addressed store, hash-verified

29 }
30
31 get(account: string, container: string): Promise<DataSource> {
32 const dataSource = getDataSourceFromDatasources(this.dataSources, account, container);
33 if (!dataSource) {
34 return Promise.reject('No connection found');
35 }
36 return Promise.resolve(dataSource);
37 }
38
39 create(dataSource: DataSource): Promise<DataSource> {
40 return Promise.reject('Not implemented');

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected