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