mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
10 lines
198 B
Go
10 lines
198 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
engineapi "github.com/kyverno/kyverno/pkg/engine/api"
|
||
|
)
|
||
|
|
||
|
type PolicyInterface interface {
|
||
|
ApplyPolicyOnResource(c ApplyPolicyConfig) ([]engineapi.EngineResponse, error)
|
||
|
}
|