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