UNPKG

cabdriver

Version:

Helps you to fill in your hours with taxi

13 lines (9 loc) 318 B
#!/usr/bin/env node var Program = require('commander'); var pkg = require('./package.json'); Program .version(pkg.version) .allowUnknownOption() .command('fetch', 'Fetches taxi entries from different sources', {isDefault: true}) .command('sheet', 'Prints a monthly sheet') .parse(process.argv);