jellyfin-web/dashboard-ui/apiclient/serverdiscovery.js
2015-11-29 17:13:06 -05:00

18 lines
398 B
JavaScript

(function (globalScope) {
globalScope.ServerDiscovery = {
findServers: function (timeoutMs) {
return new Promise(function (resolve, reject) {
var servers = [];
// Expected server properties
// Name, Id, Address, EndpointAddress (optional)
resolve(servers);
});
}
};
})(window);