Skip to content

Commit 81f41c7

Browse files
committed
tmp
1 parent 9b03a95 commit 81f41c7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package cmd
2+
3+
import (
4+
"github.com/rsteube/carapace"
5+
"github.com/rsteube/carapace-bin/pkg/actions/net"
6+
"github.com/spf13/cobra"
7+
)
8+
9+
var address_addCmd = &cobra.Command{
10+
Use: "add",
11+
Short: "add ip address",
12+
Run: func(cmd *cobra.Command, args []string) {},
13+
}
14+
15+
func init() {
16+
carapace.Gen(address_addCmd).Standalone()
17+
18+
addressCmd.AddCommand(address_addCmd)
19+
20+
carapace.Gen(address_addCmd).PositionalCompletion(
21+
net.ActionIpv4Addresses(),
22+
)
23+
}

0 commit comments

Comments
 (0)