()
| 347 | } |
| 348 | |
| 349 | func (cmd HelpCommand) getSortedPluginCommands() []configv3.PluginCommand { |
| 350 | plugins := cmd.Config.Plugins() |
| 351 | |
| 352 | var pluginCommands []configv3.PluginCommand |
| 353 | for _, plugin := range plugins { |
| 354 | pluginCommands = append(pluginCommands, plugin.PluginCommands()...) |
| 355 | } |
| 356 | |
| 357 | return pluginCommands |
| 358 | } |
no test coverage detected