1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/pkg/engine/api/policyresponse.go
Charles-Edouard Brétéché ab07c39216
refactor: remove validate failure actions from response (#6304)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-02-13 20:27:40 +08:00

9 lines
210 B
Go

package api
// PolicyResponse policy application response
type PolicyResponse struct {
// Stats contains policy statistics
Stats PolicyStats
// Rules contains policy rules responses
Rules []RuleResponse
}