mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
8 lines
153 B
Go
8 lines
153 B
Go
|
package values
|
||
|
|
||
|
type Policy struct {
|
||
|
Name string `json:"name"`
|
||
|
Resources []Resource `json:"resources"`
|
||
|
Rules []Rule `json:"rules"`
|
||
|
}
|