mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-01 09:05:42 +00:00
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
|
define(
|
||
|
[
|
||
|
'marionette',
|
||
|
'backbone'
|
||
|
], function (Marionette, Backbone) {
|
||
|
'use strict';
|
||
|
var reqres = new Backbone.Wreqr.RequestResponse();
|
||
|
|
||
|
reqres.Requests = {
|
||
|
GetEpisodeFileById: 'GetEpisodeFileById'
|
||
|
};
|
||
|
|
||
|
return reqres;
|
||
|
});
|