()
| 15 | } |
| 16 | |
| 17 | func NewPurgeConfigCommand() *PurgeConfigCommand { |
| 18 | baseCmd := &BaseCommand{flagsParser: NewDefaultCommandFlagsParser(nil), flagsValidator: NewDefaultCommandFlagsValidator(nil)} |
| 19 | purgeConfigCmd := &PurgeConfigCommand{baseCmd} |
| 20 | baseCmd.Command = purgeConfigCmd |
| 21 | return purgeConfigCmd |
| 22 | } |
| 23 | |
| 24 | func (c *PurgeConfigCommand) GetPluginCommand() plugin.Command { |
| 25 | return plugin.Command{ |
no test coverage detected