(cmd *cobra.Command, input any, results []jsonOperationResult, warnings []jsonWarning)
| 75 | } |
| 76 | |
| 77 | func newJSONCommandOperationOutput(cmd *cobra.Command, input any, results []jsonOperationResult, warnings []jsonWarning) jsonOperationOutput { |
| 78 | return withJSONCommand(cmd, newJSONOperationOutput(input, results, warnings)) |
| 79 | } |
| 80 | |
| 81 | func withJSONCommand(cmd *cobra.Command, out jsonOperationOutput) jsonOperationOutput { |
| 82 | out.OK = true |
no test coverage detected