mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
18 lines
398 B
JavaScript
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); |