jellyfin-web/dashboard-ui/bower_components/emby-apiclient/serverdiscovery.js
2015-12-16 00:30:14 -05:00

18 lines
366 B
JavaScript

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