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