(cmd *cobra.Command)
| 220 | } |
| 221 | |
| 222 | func hasSubCommands(cmd *cobra.Command) bool { |
| 223 | return len(operationSubCommands(cmd)) > 0 |
| 224 | } |
| 225 | |
| 226 | func hasManagementSubCommands(cmd *cobra.Command) bool { |
| 227 | return len(managementSubCommands(cmd)) > 0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…