| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | package contextimport (	"log"	"github.com/gravitl/netmaker/cli/config"	"github.com/spf13/cobra")var (	endpoint  string	username  string	password  string	masterKey string)var contextSetCmd = &cobra.Command{	Use:   "set [NAME]",	Args:  cobra.ExactArgs(1),	Short: "Create a context or update an existing one",	Long:  `Create a context or update an existing one`,	Run: func(cmd *cobra.Command, args []string) {		ctx := config.Context{			Endpoint:  endpoint,			Username:  username,			Password:  password,			MasterKey: masterKey,		}		if ctx.Username == "" && ctx.MasterKey == "" {			cmd.Usage()			log.Fatal("Either username/password or master key is required")		}		config.SetContext(args[0], ctx)	},}func init() {	contextSetCmd.Flags().StringVar(&endpoint, "endpoint", "", "Endpoint of the API Server")	contextSetCmd.Flags().StringVar(&username, "username", "", "Username")	contextSetCmd.Flags().StringVar(&password, "password", "", "Password")	contextSetCmd.MarkFlagsRequiredTogether("username", "password")	contextSetCmd.Flags().StringVar(&masterKey, "master_key", "", "Master Key")	rootCmd.AddCommand(contextSetCmd)}
 |