ipam/cmd/ip.go

32 lines
736 B
Go
Raw Permalink Normal View History

2023-03-10 17:52:20 +01:00
/*
Copyright © 2023 Laura Kalb <dev@lauka.net>
*/
package cmd
import (
"github.com/spf13/cobra"
2023-03-10 17:52:20 +01:00
)
// ipCmd represents the ip command
var ipCmd = &cobra.Command{
Use: "ip",
Short: "manage IP addresses",
Long: `Add, delete and show IP addresses`,
Aliases: []string{"i"},
2023-03-10 17:52:20 +01:00
}
func init() {
rootCmd.AddCommand(ipCmd)
2023-03-10 17:52:20 +01:00
// Here you will define your flags and configuration settings.
2023-03-10 17:52:20 +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
// 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
}