UNPKG

lcars-dash

Version:
20 lines (16 loc) 359 B
/** * * @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) { }); }; });