UNPKG

zokrates-tools

Version:

ZoKrates convenience CL tools and scripts.

13 lines (11 loc) 209 B
#!/usr/bin/env node import * as zoktools from "./tool" import * as yargs from 'yargs' yargs .commandDir('tool') .demandCommand(1, 'You need to give at least a command.') .help() .argv export { zoktools }