6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
class HistoDescrsProvider {
|
|
|
|
static getHistoDescrs(batchcode) {
|
|
return fetch(`data/histograms/Global/${batchcode}.json`).then(response => response.json())
|
|
}
|
|
} |