(deps commandregistry.Dependency, pluginCall bool)
| 58 | } |
| 59 | |
| 60 | func (cmd *Logs) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command { |
| 61 | cmd.ui = deps.UI |
| 62 | cmd.config = deps.Config |
| 63 | cmd.logsRepo = deps.RepoLocator.GetLogsRepository() |
| 64 | return cmd |
| 65 | } |
| 66 | |
| 67 | func (cmd *Logs) Execute(c flags.FlagContext) error { |
| 68 | app := cmd.appReq.GetApplication() |
nothing calls this directly
no test coverage detected