mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
13 lines
299 B
Go
13 lines
299 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
||
|
enginecontext "github.com/kyverno/kyverno/pkg/engine/context"
|
||
|
)
|
||
|
|
||
|
type ContextLoader interface {
|
||
|
Load(ctx context.Context, contextEntries []kyvernov1.ContextEntry, jsonContext enginecontext.Interface) error
|
||
|
}
|