mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
6 lines
203 B
Go
6 lines
203 B
Go
package cache
|
|
|
|
type Cache interface {
|
|
Get(resourceKind, resourceAPIVersion, k8sVersion string) (interface{}, error)
|
|
Set(resourceKind, resourceAPIVersion, k8sVersion string, schema interface{}) error
|
|
}
|