(deps commandregistry.Dependency, pluginCall bool)
| 26 | } |
| 27 | |
| 28 | func (cmd *UnsetEnv) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command { |
| 29 | cmd.ui = deps.UI |
| 30 | cmd.config = deps.Config |
| 31 | cmd.appRepo = deps.RepoLocator.GetApplicationRepository() |
| 32 | return cmd |
| 33 | } |
| 34 | |
| 35 | func (cmd *UnsetEnv) MetaData() commandregistry.CommandMetadata { |
| 36 | return commandregistry.CommandMetadata{ |
nothing calls this directly
no test coverage detected