CreateCommand constructor
CreateCommand()
Constructs a CreateCommand instance and sets up command options.
Implementation
CreateCommand() {
argParser.addOption(
'org',
abbr: 'o',
help: 'The organization for the new project.',
);
argParser.addOption(
'config',
abbr: 'c',
help: 'Path to a project.yaml configuration file.',
);
}