1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-apiclient/serverdiscovery.js

14 lines
270 B
JavaScript
Raw Normal View History

2015-12-14 10:43:03 -05:00
define([], function () {
2016-10-02 02:13:04 -04:00
'use strict';
2015-02-16 15:56:57 -05:00
2015-12-14 10:43:03 -05:00
return {
2015-02-16 15:56:57 -05:00
2015-02-16 22:49:47 -05:00
findServers: function (timeoutMs) {
2016-07-27 01:19:56 -04:00
// Expected server properties
// Name, Id, Address, EndpointAddress (optional)
return Promise.resolve([]);
2015-02-16 15:56:57 -05:00
}
};
2015-12-14 10:43:03 -05:00
});