(cmd *cobra.Command, input any, results []jsonOperationResult)
| 86 | } |
| 87 | |
| 88 | func renderJSONOperationOutput(cmd *cobra.Command, input any, results []jsonOperationResult) error { |
| 89 | return renderJSONOperationOutputWithWarnings(cmd, input, results, nil) |
| 90 | } |
| 91 | |
| 92 | func renderJSONOperationOutputWithWarnings(cmd *cobra.Command, input any, results []jsonOperationResult, warnings []jsonWarning) error { |
| 93 | return commandOutput(cmd).Render(nil, newJSONCommandOperationOutput(cmd, input, results, warnings)) |