lcars-dash
Version:
LCARS inspired multi-window dashboard
20 lines (16 loc) • 359 B
JavaScript
/**
*
* @class system
* @module services
*/
angular.module("lcars").service("lcSystem", function(log, configuration) {
/**
* Connect to or create and connect to a set in the library.
* @method retrieve
* @param {String} set
*/
this.retrieve = function(set) {
return new Promise(function(done, fail) {
});
};
});