cliOptions top-level property

Map<String, Option> cliOptions
final

Implementation

final Map<String, Option> cliOptions = {
  "help": Option(name: "--help", description: "Show help for command"),
  "version": Option(name: ["-v", "--version"], description: "Show the version"),
  "connection": Option(
    name: ["-c", "--connection"],
    args: [Arg(name: "connection")],
    description: "Name of the connection on which to run a query",
  ),
  "config": Option(
    name: ["-f", "--config"],
    description: "Name of the file with connection configuration",
    args: [Arg(name: "file", template: "filepaths")],
  ),
};