k3s/pkg/codegen/cleanup/main.go

13 lines
193 B
Go
Raw Normal View History

2019-01-01 08:23:01 +00:00
package main
import (
2019-05-09 22:05:51 +00:00
"github.com/rancher/wrangler/pkg/cleanup"
2019-01-01 08:23:01 +00:00
"github.com/sirupsen/logrus"
)
func main() {
2019-05-09 22:05:51 +00:00
if err := cleanup.Cleanup("./pkg/apis"); err != nil {
2019-01-01 08:23:01 +00:00
logrus.Fatal(err)
}
}