(command *cobra.Command)
| 86 | } |
| 87 | |
| 88 | func isRootCmd(command *cobra.Command) bool { |
| 89 | return command != nil && !command.HasParent() |
| 90 | } |
| 91 | |
| 92 | func rootHelpFunc(f *cmdutil.Factory, command *cobra.Command, _ []string) { |
| 93 | flags := command.Flags() |
no outgoing calls
no test coverage detected