mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
10 lines
161 B
Go
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
|
|
}
|