@eluvio/elv-utils-js
Version:
Utilities for the Eluvio Content Fabric
26 lines (21 loc) • 375 B
JavaScript
// code related to --libraryId
const {NewOpt} = require('../../options')
const blueprint = {
name: 'ArgLibraryId',
options: [
NewOpt('libraryId',
{
descTemplate: 'Library ID{X} (should start with \'ilib\')',
type: 'string'
}
)
]
}
const New = () => {
// instance interface
return {}
}
module.exports = {
blueprint,
New
}