Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var EditCmd = &cobra.Command{ Use: "edit [flags] [filename]...", Short: "Edit global value set", Long: "Edit global value set", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { updates := setAttributes(cmd) for _, file := range args { updateGlobalValueSet(file, updates) } }, }
View Source
var ListCmd = &cobra.Command{ Use: "list [filename]...", Short: "List global value set values", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { for _, file := range args { listValues(file) } }, }
View Source
var TidyCmd = &cobra.Command{ Use: "tidy [flags] [filename]...", Short: "Tidy global value set", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { for _, file := range args { tidy(file) } }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.