mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
18 lines
No EOL
366 B
JavaScript
18 lines
No EOL
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);
|
|
});
|
|
}
|
|
};
|
|
|
|
}); |