package cmd import ( "github.com/rsteube/carapace" "github.com/spf13/cobra" ) var cleanCmd = &cobra.Command{ Use: "clean", Short: "Delete the build/ and .dart_tool/ directories", Run: func(cmd *cobra.Command, args []string) {}, } func init() { carapace.Gen(cleanCmd).Standalone() cleanCmd.Flags().BoolP("help", "h", false, "Print this usage information.") rootCmd.AddCommand(cleanCmd) }