ipfs
Version:
JavaScript implementation of the IPFS specification
22 lines (15 loc) • 364 B
JavaScript
const path = require('path')
const cidCommandsPath = path.join(
path.dirname(require.resolve('cid-tool')), 'cli', 'commands'
)
module.exports = {
command: 'cid <command>',
description: 'Convert, format and discover properties of CIDs.',
builder (yargs) {
return yargs
.commandDir(cidCommandsPath)
},
handler (argv) {
}
}