1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/pkg/metrics/helpers.go
2021-09-10 14:39:12 -07:00

10 lines
161 B
Go

package metrics
func ElementInSlice(element string, slice []string) bool {
for _, v := range slice {
if v == element {
return true
}
}
return false
}