mirror of
https://github.com/kyverno/kyverno.git
synced 2025-04-15 00:36:28 +00:00
12 lines
301 B
Go
12 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
|
||
|
}
|