(cmd *cobra.Command, args []string, toComplete string)
| 79 | } |
| 80 | |
| 81 | func networkInspectShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 82 | // show network names, including "bridge" |
| 83 | exclude := []string{"host", "none"} |
| 84 | return completion.NetworkNames(cmd, exclude) |
| 85 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…