k3s/types/codegen/cleanup/main.go

13 lines
194 B
Go

package main
import (
"github.com/rancher/norman/generator/cleanup"
"github.com/sirupsen/logrus"
)
func main() {
if err := cleanup.Cleanup("./types"); err != nil {
logrus.Fatal(err)
}
}