mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 11:49:42 +00:00
13 lines
193 B
Go
13 lines
193 B
Go
package main
|
|
|
|
import (
|
|
"github.com/rancher/wrangler/pkg/cleanup"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
if err := cleanup.Cleanup("./pkg/apis"); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|