kubeconform/pkg/registry/registry.go
2020-05-30 18:28:04 +02:00

9 lines
179 B
Go

package registry
type Manifest struct {
Kind, Version string
}
type Registry interface {
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) ([]byte, error)
}