@marteye/studio-cli
Version:
CLI for MartEye Studio API
21 lines (17 loc) • 577 B
JavaScript
;
var commander = require('commander');
var output = require('../utils/output.js');
function adjustmentsCommand() {
const adjustments = new commander.Command('adjustments')
.description('Adjustment operations');
adjustments
.command('list <market-id>')
.description('List adjustments')
.action(async () => {
output.error('Adjustments commands not yet implemented');
process.exit(1);
});
return adjustments;
}
exports.adjustmentsCommand = adjustmentsCommand;
//# sourceMappingURL=adjustments.js.map