mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-03 08:39:40 +00:00
13 lines
194 B
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)
|
|
}
|
|
}
|