multi-downloader-nx_mirror/index.ts
2021-10-31 13:21:02 +01:00

17 lines
No EOL
335 B
TypeScript

import { appArgv } from "./modules/module.app-args";
import * as yamlCfg from './modules/module.cfg-loader';
import funimation from './funi'
(async () => {
const cfg = yamlCfg.loadCfg();
const argv = appArgv(cfg.cli);
if (argv.service === 'funi') {
await funimation()
} else if (argv.service === 'crunchy') {
}
})()