0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2024-06-01 21:44:31 +02:00
Doodle3D-API/src/api/system.js
2016-04-21 15:52:23 +02:00

11 lines
188 B
JavaScript

import * as rest from '../rest.js';
export default class System {
constructor(api) {
this.api = api;
}
versions() {
return rest.get(`${ this.api }system/fwversions`);
}
}