UNPKG

@marteye/studio-cli

Version:

CLI for MartEye Studio API

21 lines (17 loc) 549 B
'use strict'; var commander = require('commander'); var output = require('../utils/output.js'); function taxRatesCommand() { const taxRates = new commander.Command('tax-rates') .description('Tax rate operations'); taxRates .command('list <market-id>') .description('List tax rates') .action(async () => { output.error('Tax rates commands not yet implemented'); process.exit(1); }); return taxRates; } exports.taxRatesCommand = taxRatesCommand; //# sourceMappingURL=tax-rates.js.map