mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
b59353c657
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
6 lines
68 B
Go
6 lines
68 B
Go
package store
|
|
|
|
type Entry interface {
|
|
Get() (any, error)
|
|
Stop()
|
|
}
|