master
 1package get
 2
 3import (
 4	"github.com/kahnwong/swissknife/internal/get"
 5	"github.com/spf13/cobra"
 6)
 7
 8var getIPCmd = &cobra.Command{
 9	Use:   "ip",
10	Short: "Get IP information",
11	Long:  `Get IP information`,
12	RunE: func(cmd *cobra.Command, args []string) error {
13		return get.IP()
14	},
15}
16
17func init() {
18	Cmd.AddCommand(getIPCmd)
19}