mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
|
define([], function () {
|
||
|
'use strict';
|
||
|
|
||
|
return {
|
||
|
fileExists: function (path) {
|
||
|
return Promise.reject();
|
||
|
},
|
||
|
directoryExists: function (path) {
|
||
|
return Promise.reject();
|
||
|
}
|
||
|
};
|
||
|
});
|