ipam/cmd/subnet.go

32 lines
760 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
)
// subnetCmd represents the subnet command
var subnetCmd = &cobra.Command{
Use: "subnet",
Short: "Manage IP subnets",
Long: `Add, delete and show IP subnets`,
Aliases: []string{"s"},
2023-03-10 17:52:20 +01:00
}
func init() {
rootCmd.AddCommand(subnetCmd)
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.:
// subnetCmd.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.:
// subnetCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
2023-03-10 17:52:20 +01:00
}