1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 13:18:20 +00:00
Files
types/main.go

18 lines
516 B
Go
Raw Normal View History

2017-11-15 16:59:47 -07:00
//go:generate go run generator/cleanup/main.go
2017-11-10 21:58:42 -07:00
//go:generate go run main.go
2017-11-10 13:23:15 -07:00
package main
import (
2017-11-13 14:49:28 -07:00
authzSchema "github.com/rancher/types/apis/authorization.cattle.io/v1/schema"
clusterSchema "github.com/rancher/types/apis/cluster.cattle.io/v1/schema"
workloadSchema "github.com/rancher/types/apis/workload.cattle.io/v1/schema"
2017-11-11 21:14:05 -07:00
"github.com/rancher/types/generator"
2017-11-10 21:58:42 -07:00
)
2017-11-10 13:23:15 -07:00
func main() {
2017-11-11 21:14:05 -07:00
generator.Generate(clusterSchema.Schemas)
generator.Generate(workloadSchema.Schemas)
generator.Generate(authzSchema.Schemas)
2017-11-10 13:23:15 -07:00
}