mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-03-11 17:45:30 +00:00
parent
456fc07567
commit
a0bb3dfeda
1 changed files with 5 additions and 4 deletions
9
funi.js
9
funi.js
|
|
@ -21,10 +21,11 @@ const crypto = require("crypto");
|
|||
const got = require('got');
|
||||
|
||||
// extra
|
||||
const appYargs = require('./modules/module.app-args');
|
||||
const getYamlCfg = require('./modules/module.cfg-loader');
|
||||
const getData = require('./modules/module.getdata.js');
|
||||
const vttConvert = require('./modules/module.vttconvert');
|
||||
const moduleFolder = path.join(__dirname, "/modules")
|
||||
const appYargs = require(path.join(moduleFolder, 'module.app-args'));
|
||||
const getYamlCfg = require(path.join(moduleFolder, 'module.cfg-loader'));
|
||||
const getData = require(path.join(moduleFolder, 'module.getdata.js'));
|
||||
const vttConvert = require(path.join(moduleFolder, 'module.vttconvert'));
|
||||
|
||||
// new-cfg
|
||||
const cfgFolder = path.join(__dirname, '/config');
|
||||
|
|
|
|||
Loading…
Reference in a new issue