(cmd *cobra.Command, input getCommandInput, results []getResult)
| 182 | } |
| 183 | |
| 184 | func renderGetResults(cmd *cobra.Command, input getCommandInput, results []getResult) error { |
| 185 | return renderJSONOperationOutput(cmd, input, getOperationResults(results)) |
| 186 | } |
| 187 | |
| 188 | func getOperationResults(results []getResult) []jsonOperationResult { |
| 189 | operationResults := make([]jsonOperationResult, 0, len(results)) |
no test coverage detected