mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
11 lines
218 B
Go
11 lines
218 B
Go
|
package values
|
||
|
|
||
|
import (
|
||
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||
|
)
|
||
|
|
||
|
type Subresource struct {
|
||
|
APIResource metav1.APIResource `json:"subresource"`
|
||
|
ParentResource metav1.APIResource `json:"parentResource"`
|
||
|
}
|