| 1234567891011121314151617181920 | package ext_clientimport (	"github.com/gravitl/netmaker/cli/functions"	"github.com/spf13/cobra")var extClientGetCmd = &cobra.Command{	Use:   "get [NETWORK NAME] [EXTERNAL CLIENT ID]",	Args:  cobra.ExactArgs(2),	Short: "Get an External Client",	Long:  `Get an External Client`,	Run: func(cmd *cobra.Command, args []string) {		functions.PrettyPrint(functions.GetExtClient(args[0], args[1]))	},}func init() {	rootCmd.AddCommand(extClientGetCmd)}
 |