1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 09:26:54 +00:00
kyverno/pkg/annotations/info.go

19 lines
291 B
Go
Raw Normal View History

2019-07-19 15:10:40 -07:00
package annotations
type info struct {
RKind string
RNs string
RName string
//TODO:Hack as slice makes the struct unhasable
2019-07-25 13:14:55 -04:00
patch *[]byte
2019-07-19 15:10:40 -07:00
}
2019-07-25 13:14:55 -04:00
func newInfo(rkind, rns, rname string, patch *[]byte) info {
2019-07-19 15:10:40 -07:00
return info{
RKind: rkind,
RNs: rns,
RName: rname,
2019-07-25 13:14:55 -04:00
patch: patch,
2019-07-19 15:10:40 -07:00
}
}