mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 01:16:55 +00:00
7 lines
68 B
Go
7 lines
68 B
Go
|
package store
|
||
|
|
||
|
type Entry interface {
|
||
|
Get() (any, error)
|
||
|
Stop()
|
||
|
}
|