mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
6 lines
68 B
Go
6 lines
68 B
Go
package store
|
|
|
|
type Entry interface {
|
|
Get() (any, error)
|
|
Stop()
|
|
}
|