tools/minimalImageBuildTool/cmd/install.go (
12
lines of code) (
raw
):
package cmd import ( "github.com/spf13/cobra" ) var installCmd = &cobra.Command{ Use: "install", Short: "", Long: "", } func init() { rootCmd.AddCommand(installCmd) }