blob: 01989d952b8c460fc811fef0f1abd4c68e159207 (
plain) (
tree)
|
|
import { makeGetRequest } from '../'
function getStats (url: string, useCache = false) {
const path = '/api/v1/server/stats'
const query = {
t: useCache ? undefined : new Date().getTime()
}
return makeGetRequest({
url,
path,
query,
statusCodeExpected: 200
})
}
// ---------------------------------------------------------------------------
export {
getStats
}
|