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

15 lines
224 B
JavaScript
Raw Normal View History

2015-06-08 17:32:20 -04:00
(function (globalScope) {
function send(info) {
2015-11-29 17:13:06 -05:00
return new Promise(function (resolve, reject) {
resolve();
});
2015-06-08 17:32:20 -04:00
}
globalScope.WakeOnLan = {
send: send
};
})(window);