UNPKG

azcosts

Version:

Azcosts is a CLI tool for generating Azure infrastructure cost reports

13 lines (9 loc) 272 B
#!/usr/bin/env node 'use strict'; let program = require('commander'); // Parse args program .version('1.0.1') .command('init', 'Initialize Azcosts project. Creates an azcosts.json config file.') .command('get', 'Get Azure costs.') .parse(process.argv);