qrz/vendor/github.com/gobuffalo/packr/v2/packr2/cmd/clean.go
Paul Lecuq 36c5d6f2ed
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
large change on qrz
- web service with json support
- web page
- cron service to update database infos
2020-05-09 19:09:27 +02:00

19 lines
312 B
Go

package cmd
import (
"github.com/gobuffalo/packr/v2/jam"
"github.com/spf13/cobra"
)
var cleanCmd = &cobra.Command{
Use: "clean",
Short: "removes any *-packr.go files",
RunE: func(cmd *cobra.Command, args []string) error {
return jam.Clean(args...)
},
}
func init() {
rootCmd.AddCommand(cleanCmd)
}