jellyfin-web/dashboard-ui/bower_components/emby-apiclient/serverdiscovery.js

14 lines
270 B
JavaScript
Raw Normal View History

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