DialectCommandRunner constructor

DialectCommandRunner()

Implementation

DialectCommandRunner()
  : super('dialect', 'AI-native localization for Flutter-led teams.') {
  argParser.addFlag(
    'version',
    negatable: false,
    help: 'Print the tool version and exit.',
  );

  addCommand(InitCommand());
  addCommand(ImportCommand());
  addCommand(DescribeCommand());
  addCommand(SyncCommand());
  addCommand(CheckCommand());
  addCommand(StatusCommand());
  addCommand(ServeCommand());
}