mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
15 lines
198 B
JavaScript
15 lines
198 B
JavaScript
define([], function () {
|
|
|
|
function send(info) {
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
resolve();
|
|
});
|
|
}
|
|
|
|
return {
|
|
send: send
|
|
};
|
|
|
|
}); |