ipam/cmd/subnet.go

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