()
| 25 | } |
| 26 | |
| 27 | func NewMtaCommand() *MtaCommand { |
| 28 | baseCmd := &BaseCommand{flagsParser: NewDefaultCommandFlagsParser([]string{"MTA_ID"}), flagsValidator: NewDefaultCommandFlagsValidator(nil)} |
| 29 | mtaCmd := &MtaCommand{BaseCommand: baseCmd} |
| 30 | baseCmd.Command = mtaCmd |
| 31 | return mtaCmd |
| 32 | } |
| 33 | |
| 34 | func (c *MtaCommand) Initialize(name string, cliConnection plugin.CliConnection) { |
| 35 | c.BaseCommand.Initialize(name, cliConnection) |
no test coverage detected