mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-13 23:17:02 +00:00
11 lines
235 B
Go
11 lines
235 B
Go
package registry
|
|
|
|
import "github.com/xeipuuv/gojsonschema"
|
|
|
|
type Manifest struct {
|
|
Kind, Version string
|
|
}
|
|
|
|
type Registry interface {
|
|
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) (*gojsonschema.Schema, error)
|
|
}
|