ipam/cmd/ip.go

32 lines
775 B
Go
Raw Normal View History

2023-03-10 17:52:20 +01:00
/*
Copyright © 2023 Laura Kalb <dev@lauka.net>
*/
package cmd
import (
2023-03-25 15:16:26 +01:00
"github.com/spf13/cobra"
2023-03-10 17:52:20 +01:00
)
// ipCmd represents the ip command
var ipCmd = &cobra.Command{
2023-03-25 15:16:26 +01:00
Use: "ip",
2023-03-25 21:39:42 +01:00
Short: "manage IP addresses",
Long: `Add, delete and show IP addresses`,
2023-03-25 15:16:26 +01:00
Aliases: []string{"i"},
2023-03-10 17:52:20 +01:00
}
func init() {
2023-03-25 15:16:26 +01:00
rootCmd.AddCommand(ipCmd)
2023-03-10 17:52:20 +01:00
2023-03-25 15:16:26 +01:00
// Here you will define your flags and configuration settings.
2023-03-10 17:52:20 +01:00
2023-03-25 15:16:26 +01:00
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// ipCmd.PersistentFlags().String("foo", "", "A help for foo")
2023-03-10 17:52:20 +01:00
2023-03-25 15:16:26 +01:00
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// ipCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
2023-03-10 17:52:20 +01:00
}