From 9f8c8f7e29cdf16380cd36dae48d7d7149d8d9d3 Mon Sep 17 00:00:00 2001 From: lauralani Date: Thu, 16 Mar 2023 08:35:07 +0100 Subject: [PATCH] remove ip list --- cmd/ip-list.go | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 cmd/ip-list.go diff --git a/cmd/ip-list.go b/cmd/ip-list.go deleted file mode 100644 index 00ba7d9..0000000 --- a/cmd/ip-list.go +++ /dev/null @@ -1,35 +0,0 @@ -/* -Copyright © 2023 Laura Kalb -*/ -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") -}