UNPKG

@marteye/studio-cli

Version:

CLI for MartEye Studio API

21 lines (17 loc) 543 B
'use strict'; var commander = require('commander'); var output = require('../utils/output.js'); function actionsCommand() { const actions = new commander.Command('actions') .description('Action operations'); actions .command('list <market-id>') .description('List available actions') .action(async () => { output.error('Actions commands not yet implemented'); process.exit(1); }); return actions; } exports.actionsCommand = actionsCommand; //# sourceMappingURL=actions.js.map