in util/strings.go [5:13]
func ContainsString(s []string, e string) bool { for _, a := range s { if a == e { return true } } return false }