(config command.Config, ui command.UI)
| 36 | } |
| 37 | |
| 38 | func (cmd *HelpCommand) Setup(config command.Config, ui command.UI) error { |
| 39 | cmd.Actor = sharedaction.NewActor(config) |
| 40 | cmd.Config = config |
| 41 | cmd.UI = ui |
| 42 | |
| 43 | return nil |
| 44 | } |
| 45 | |
| 46 | func (cmd HelpCommand) Execute(args []string) error { |
| 47 | var err error |
nothing calls this directly
no test coverage detected