commands property

  1. @override
Map<String, CliCommand> get commands
override

Defines a list of subcommands.

サブコマンドの一覧を定義します。

Implementation

@override
Map<String, CliCommand> get commands => const {
      "submodule": GitSubmoduleCliCommand(),
      "update": GitUpdateCliCommand(),
      "commit": GitCommitCliCommand(),
      "remove": GitRemoveCliCommand(),
      "pull_request": GitPullRequestCliCommand(),
      "pull_request_comment": GitPullRequestCommentCliCommand(),
    };