1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/pkg/metrics/helpers.go

11 lines
161 B
Go
Raw Normal View History

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