safing-jess/truststores/utils.go
2020-01-13 00:15:58 +01:00

10 lines
152 B
Go

package truststores
func stringInSlice(s string, a []string) bool {
for _, entry := range a {
if entry == s {
return true
}
}
return false
}