Files
kustomize/cmd/depprobcheck/main.go
2022-04-04 14:24:04 -04:00

23 lines
428 B
Go

// Copyright 2022 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
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{})
}