(cmd *cobra.Command)
| 327 | } |
| 328 | |
| 329 | func jsonHelpInputPath(cmd *cobra.Command) string { |
| 330 | if cmd == nil || cmd.Root() == cmd { |
| 331 | return "" |
| 332 | } |
| 333 | return jsonCommandPath(cmd) |
| 334 | } |
| 335 | |
| 336 | func jsonHelpOperationResults(cmd *cobra.Command) []jsonOperationResult { |
| 337 | commands := publicCommandSubtree(cmd) |
no test coverage detected