func Contains()

in action/log/logadapter/elasticsearch.go [198:205]


func Contains(slice []string, str string) bool {
	for _, item := range slice {
		if item == str {
			return true
		}
	}
	return false
}