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