mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
define([], function () {
|
|
'use strict';
|
|
|
|
return {
|
|
|
|
findServers: function (timeoutMs) {
|
|
|
|
// Expected server properties
|
|
// Name, Id, Address, EndpointAddress (optional)
|
|
return Promise.resolve([]);
|
|
}
|
|
};
|
|
|
|
}); |