UNPKG

@greenpress/cli

Version:
11 lines (8 loc) 226 B
const { stopCommand } = require('../controllers/stop'); function setStopCommand(program) { program .command('stop') .description('stop greenpress application') .action(stopCommand); } module.exports = setStopCommand;