mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
5fcd9b83d9
Signed-off-by: Yashvardhan Kukreja <yash.kukreja.98@gmail.com>
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
|
|
}
|