(cmd *cobra.Command, args []string, toComplete string)
| 64 | } |
| 65 | |
| 66 | func networkRmShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 67 | // show network names, including "bridge" |
| 68 | exclude := []string{netutil.DefaultNetworkName, "host", "none"} |
| 69 | return completion.NetworkNames(cmd, exclude) |
| 70 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…