13
0
Fork 0
mirror of https://github.com/yannh/kubeconform.git synced 2026-06-29 16:30:44 +00:00
kubeconform/pkg/cache/cache.go
2025-05-11 02:05:01 +02:00

6 lines
105 B
Go

package cache
type Cache interface {
Get(key string) (any, error)
Set(key string, schema any) error
}