0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-09-21 19:30:07 +02:00
doodle3d-client/js/api/InfoAPI.js
2015-04-25 17:26:12 +02:00

14 lines
387 B
JavaScript

/*
* This file is part of the Doodle3D project (http://doodle3d.com).
*
* Copyright (c) 2013, Doodle3D
* This software is licensed under the terms of the GNU GPL v2 or later.
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
*/
function InfoAPI() {
this.status = function(success,fail) {
API.get('info/status',success,fail);
};
}