zenodraft
Version:
CLI to manage depositions on Zenodo and Zenodo Sandbox
11 lines (10 loc) • 469 B
JavaScript
import * as commander from 'commander';
import { deposition_create_concept_command } from './create/concept';
import { deposition_create_version_command } from './create/version';
export const deposition_create_command = () => {
return new commander.Command()
.name('create')
.description('Subcommands for creating a deposition.')
.addCommand(deposition_create_concept_command())
.addCommand(deposition_create_version_command());
};