Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 9 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import commander from 'commander' |
||
2 | import InstallController from '../controllers/installController' |
||
3 | |||
4 | export default (program: typeof commander): commander.Command => program |
||
5 | .command('install') |
||
6 | .description('Run the initial setup of Jale') |
||
7 | .action(() => { |
||
8 | (new InstallController()).execute().catch(err => console.log(err.message)) |
||
9 | }) |