mirror of
https://codeberg.org/lauralani/ipam.git
synced 2024-11-23 20:20:39 +01:00
remove ip list
This commit is contained in:
parent
e7786e1822
commit
9f8c8f7e29
1 changed files with 0 additions and 35 deletions
|
@ -1,35 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright © 2023 Laura Kalb <dev@lauka.net>
|
|
||||||
*/
|
|
||||||
package cmd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
|
||||||
)
|
|
||||||
|
|
||||||
var iplistCmd = &cobra.Command{
|
|
||||||
Use: "edit",
|
|
||||||
Short: "List all IP addresses with subnets",
|
|
||||||
Long: `List all IP addresses with subnets`,
|
|
||||||
Aliases: []string{"l"},
|
|
||||||
Args: cobra.ExactArgs(0),
|
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
|
||||||
fmt.Println("ip list called")
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
ipCmd.AddCommand(iplistCmd)
|
|
||||||
|
|
||||||
// Here you will define your flags and configuration settings.
|
|
||||||
|
|
||||||
// Cobra supports Persistent Flags which will work for this command
|
|
||||||
// and all subcommands, e.g.:
|
|
||||||
// editCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
||||||
|
|
||||||
// Cobra supports local flags which will only run when this command
|
|
||||||
// is called directly, e.g.:
|
|
||||||
// editCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
||||||
}
|
|
Loading…
Reference in a new issue