Add a dependency debugging directory.

This commit is contained in:
monopole
2021-05-04 22:11:52 -07:00
parent 02dff45d7d
commit a0edb2d966
4 changed files with 765 additions and 0 deletions

19
cmd/depprobcheck/main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"fmt"
"k8s.io/cli-runtime/pkg/genericclioptions"
"k8s.io/kube-openapi/pkg/validation/spec"
//"github.com/go-openapi/swag"
)
func main() {
//hey := yaml.TypeMeta{}
//fmt.Printf("%v\n", hey)
// fmt.Printf("%v\n", swag.BooleanProperty())
genericclioptions.NewConfigFlags(true)
fmt.Printf("%v\n", spec.Schema{})
}