(deps commandregistry.Dependency, _ bool)
| 51 | } |
| 52 | |
| 53 | func (cmd *ListStack) SetDependency(deps commandregistry.Dependency, _ bool) commandregistry.Command { |
| 54 | cmd.ui = deps.UI |
| 55 | cmd.config = deps.Config |
| 56 | cmd.stacksRepo = deps.RepoLocator.GetStackRepository() |
| 57 | return cmd |
| 58 | } |
| 59 | |
| 60 | func (cmd *ListStack) Execute(c flags.FlagContext) error { |
| 61 | stackName := c.Args()[0] |
nothing calls this directly
no test coverage detected