()
| 22 | } |
| 23 | |
| 24 | func NewUndeployCommand() *UndeployCommand { |
| 25 | baseCmd := &BaseCommand{flagsParser: NewProcessActionExecutorCommandArgumentsParser([]string{"MTA_ID"}), flagsValidator: NewDefaultCommandFlagsValidator(nil)} |
| 26 | undeployCmd := &UndeployCommand{baseCmd, &undeployCommandProcessTypeProvider{}} |
| 27 | baseCmd.Command = undeployCmd |
| 28 | return undeployCmd |
| 29 | } |
| 30 | |
| 31 | // GetPluginCommand returns the plugin command details |
| 32 | func (c *UndeployCommand) GetPluginCommand() plugin.Command { |
no test coverage detected