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/thirdparty/apiclient/connectionmanager.js

20 lines
323 B
JavaScript
Raw Normal View History

2014-10-15 23:26:39 -04:00
if (!window.MediaBrowser) {
window.MediaBrowser = {};
}
MediaBrowser.ConnectionManager = function () {
return function () {
var self = this;
self.getServers = function (currentApiClient) {
};
self.changeServer = function (currentApiClient, server) {
};
};
}();