package utils func SliceContains(slice []string, item string) bool { for _, s := range slice { if s == item { return true } } return false }