Doodle3D-API/src/api/update.js

30 lines
437 B
JavaScript

import * as rest from './restapi.js';
export default class {
constructor (api) {
this.api = api;
}
status () {
return rest.get(`${ this.api }update/status`);
}
download () {
//not tested
return rest.post(`${ this.api }update/download`, {});
}
install () {
//not tested
return rest.post(`${ this.api }update/install`, {});
}
clear () {
//not tested
return rest.post(`${ this.api }update/clear`, {});
}
}