(account: string, container: string)
| 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'); |
nothing calls this directly
no test coverage detected