mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
11 lines
181 B
Go
11 lines
181 B
Go
package engine
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/kyverno/kyverno/pkg/cel/policy"
|
|
)
|
|
|
|
type Provider interface {
|
|
CompiledPolicies(context.Context) ([]policy.CompiledPolicy, error)
|
|
}
|