github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/fly/commands/help.go (about)

     1  package commands
     2  
     3  import "errors"
     4  
     5  var ErrShowHelpMessage = errors.New("help command invoked")
     6  
     7  type HelpCommand struct{}
     8  
     9  func (command *HelpCommand) Execute(args []string) error {
    10  	return ErrShowHelpMessage
    11  }