(_ *cobra.Command, _ []string, toComplete string)
| 246 | } |
| 247 | |
| 248 | func ValidArgsGetTools(_ *cobra.Command, _ []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 249 | return getTools(toComplete), cobra.ShellCompDirectiveNoFileComp |
| 250 | } |
| 251 | |
| 252 | func ValidArgsGetMetrics(_ *cobra.Command, _ []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 253 | return getMetrics(toComplete), cobra.ShellCompDirectiveNoFileComp |
nothing calls this directly
no test coverage detected