(deps commandregistry.Dependency, pluginCall bool)
| 53 | } |
| 54 | |
| 55 | func (cmd *DisableSSH) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command { |
| 56 | cmd.ui = deps.UI |
| 57 | cmd.config = deps.Config |
| 58 | cmd.appRepo = deps.RepoLocator.GetApplicationRepository() |
| 59 | return cmd |
| 60 | } |
| 61 | |
| 62 | func (cmd *DisableSSH) Execute(fc flags.FlagContext) error { |
| 63 | app := cmd.appReq.GetApplication() |
nothing calls this directly
no test coverage detected