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