UNPKG

@vulppi/intrest

Version:
14 lines (11 loc) 314 B
#!/usr/bin/env node import { hideBin } from 'yargs/helpers' import yargs from 'yargs/yargs' import * as commands from '../dist/commands/index.mjs' yargs(hideBin(process.argv)) .scriptName('intrest') .usage('irest <cmd> [args]') .command(Object.values(commands)) .help() .recommendCommands() .parse()