UNPKG

@marteye/studio-cli

Version:

CLI for MartEye Studio API

21 lines (17 loc) 587 B
'use strict'; var commander = require('commander'); var output = require('../utils/output.js'); function bidderAppsCommand() { const bidderApps = new commander.Command('bidder-apps') .description('Bidder application operations'); bidderApps .command('list <market-id>') .description('List bidder applications') .action(async () => { output.error('Bidder apps commands not yet implemented'); process.exit(1); }); return bidderApps; } exports.bidderAppsCommand = bidderAppsCommand; //# sourceMappingURL=bidder-apps.js.map