(cmd *cobra.Command)
| 62 | } |
| 63 | |
| 64 | func DisableTelemetry(cmd *cobra.Command) { |
| 65 | if cmd.Annotations == nil { |
| 66 | cmd.Annotations = map[string]string{} |
| 67 | } |
| 68 | cmd.Annotations["telemetry"] = "disabled" |
| 69 | } |
| 70 | |
| 71 | func DisableTelemetryForSubcommands(cmd *cobra.Command) { |
| 72 | for _, c := range cmd.Commands() { |
no outgoing calls