commands top-level constant

List<Command> const commands

Implementation

const commands = [
  Command(
    args: help,
    description: "Show CLI commands",
  ),
  Command(
    args: init,
    description:
        "Adds an empty config file and a 'hello world' translation fallback",
  ),
  Command(
    args: download,
    description: "Get translations from server",
  ),
  Command(
    args: upload,
    description: "Upload local translations to server",
  ),
  Command(
    args: generate,
    description: "Generate sdk files from downloaded .json file",
  ),
  Command(
    args: sync,
    description:
        "Upload, download and generate translations, following this order",
  )
];