Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cobra.Command{ Use: "apply", Args: cobra.NoArgs, RunE: func(cmd *cobra.Command, args []string) error { var input []byte var err error if flagActionFilePath == stdinFilePath { input, err = io.ReadAll(os.Stdin) } else { input, err = os.ReadFile(path.Clean(flagActionFilePath)) } if err != nil { return err } return apply(cmd.Context(), input, flagNoPrettyUI) }, SilenceUsage: true, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.