(cmd *cobra.Command)
| 297 | } |
| 298 | |
| 299 | func enableStructuredOutput(cmd *cobra.Command) { |
| 300 | if cmd.Annotations == nil { |
| 301 | cmd.Annotations = make(map[string]string) |
| 302 | } |
| 303 | cmd.Annotations[structuredOutputSupportedAnnotation] = "true" |
| 304 | } |
| 305 | |
| 306 | func commandVerbose(cmd *cobra.Command) bool { |
| 307 | if cmd == nil { |
no outgoing calls