1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-15 17:51:20 +00:00
kyverno/pkg/globalcontext/store/entry.go
Charles-Edouard Brétéché b59353c657
chore: move global context package out of engine (#9618)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2024-02-02 14:35:24 +00:00

6 lines
68 B
Go

package store
type Entry interface {
Get() (any, error)
Stop()
}