mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
12 lines
270 B
Go
12 lines
270 B
Go
|
package table
|
||
|
|
||
|
type RowCompact struct {
|
||
|
IsFailure bool
|
||
|
ID int `header:"id"`
|
||
|
Policy string `header:"policy"`
|
||
|
Rule string `header:"rule"`
|
||
|
Resource string `header:"resource"`
|
||
|
Result string `header:"result"`
|
||
|
Reason string `header:"reason"`
|
||
|
}
|