setupArgParser method
- @protected
Sets up the argument parser with command-specific options
Implementation
@protected
void setupArgParser() {
// Common options for all create commands
argParser.addOption(
'output-directory',
abbr: 'o',
help: 'Custom output directory for the generated files.',
);
// Command-specific options should be added in subclasses
}