mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02: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;
|
||
|
});
|