Files
HowBadIsMyBatch/docs/HistoDescrsProvider.js
Frank Knoll 3d2e0405a3 refactoring
2024-04-24 14:28:02 +02:00

7 lines
187 B
JavaScript

class HistoDescrsProvider {
static getHistoDescrs(batchcode) {
return fetch(`data/histograms/Global/${batchcode}.json`)
.then(response => response.json())
}
}