(name string, cliConnection plugin.CliConnection)
| 32 | } |
| 33 | |
| 34 | func (c *MtaCommand) Initialize(name string, cliConnection plugin.CliConnection) { |
| 35 | c.BaseCommand.Initialize(name, cliConnection) |
| 36 | delegate := cfrestclient.NewCloudFoundryRestClient(cliConnection) |
| 37 | c.CfClient = resilient.NewResilientCloudFoundryClient(delegate, maxRetriesCount, retryIntervalInSeconds) |
| 38 | } |
| 39 | |
| 40 | // GetPluginCommand returns the plugin command details |
| 41 | func (c *MtaCommand) GetPluginCommand() plugin.Command { |
nothing calls this directly
no test coverage detected