mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
11 lines
151 B
Go
11 lines
151 B
Go
|
package utils
|
||
|
|
||
|
func Contains(list []string, element string) bool {
|
||
|
for _, e := range list {
|
||
|
if e == element {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|