[addon] adds alldebrid moch

This commit is contained in:
TheBeastLT
2020-05-09 14:51:14 +02:00
parent f9260bff2e
commit c8dd952354
4 changed files with 108 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
const realdebrid = require('./realdebrid');
const premiumize = require('./premiumize');
const alldebrid = require('./alldebrid');
const RESOLVER_HOST = process.env.RESOLVER_HOST || 'http://localhost:7050';
const MOCHS = {
@@ -12,6 +13,11 @@ const MOCHS = {
key: 'premiumize',
instance: premiumize,
shortName: 'PM'
},
'alldebrid': {
key: 'alldebrid',
instance: alldebrid,
shortName: 'AD'
}
};