2021-08-07 14:49:23 +02:00

20 lines
403 B
Go

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)
}