tools/minimalImageBuildTool/cmd/clean.go (12 lines of code) (raw):

package cmd import ( "github.com/spf13/cobra" ) var cleanCmd = &cobra.Command{ Use: "clean", Short: "", Long: "", } func init() { rootCmd.AddCommand(cleanCmd) }