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