1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-04-13 15:57:31 +00:00
kyverno/pkg/violation/internalinterfaces/violation_interfaces.go

11 lines
301 B
Go

package internalinterfaces
import (
"github.com/nirmata/kube-policy/controller/internalinterfaces"
utils "github.com/nirmata/kube-policy/pkg/violation/utils"
)
type ViolationGenerator interface {
SetController(controller internalinterfaces.PolicyGetter)
Create(info utils.ViolationInfo) error
}