You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3s/pkg/codegen/cleanup/main.go

13 lines
193 B

6 years ago
package main
import (
6 years ago
"github.com/rancher/wrangler/pkg/cleanup"
6 years ago
"github.com/sirupsen/logrus"
)
func main() {
6 years ago
if err := cleanup.Cleanup("./pkg/apis"); err != nil {
6 years ago
logrus.Fatal(err)
}
}