20 lines
436 B
JavaScript
20 lines
436 B
JavaScript
/* xeslint-disable */
|
|
import apiUtil from "./apiutil";
|
|
|
|
export default {
|
|
fetchAPIInfo() {
|
|
return new Promise(function(resolve, reject) {
|
|
//step 2: get it
|
|
fetch(apiUtil.APIUrl("ServerInfo"), apiUtil.fetch())
|
|
.then(apiUtil.status)
|
|
.then(apiUtil.json)
|
|
.then(response => {
|
|
resolve(response);
|
|
})
|
|
.catch(function(error) {
|
|
reject(error);
|
|
});
|
|
});
|
|
}
|
|
};
|