Skip to content

Commit 07b1279

Browse files
committed
tmp
1 parent 36f358f commit 07b1279

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

completers/ip_completer/cmd/address_add.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,17 @@ package cmd
22

33
import (
44
"github.com/rsteube/carapace"
5-
"github.com/rsteube/carapace-bin/pkg/actions/net"
65
"github.com/spf13/cobra"
76
)
87

98
var address_addCmd = &cobra.Command{
109
Use: "add",
11-
Short: "add ip address",
10+
Short: "add new protocol address",
1211
Run: func(cmd *cobra.Command, args []string) {},
1312
}
1413

1514
func init() {
1615
carapace.Gen(address_addCmd).Standalone()
1716

1817
addressCmd.AddCommand(address_addCmd)
19-
20-
carapace.Gen(address_addCmd).PositionalCompletion(
21-
net.ActionIpv4Addresses(),
22-
)
2318
}

0 commit comments

Comments
 (0)