mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-12 14:39:21 +00:00
9 lines
179 B
Go
9 lines
179 B
Go
package registry
|
|
|
|
type Manifest struct {
|
|
Kind, Version string
|
|
}
|
|
|
|
type Registry interface {
|
|
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) ([]byte, error)
|
|
}
|