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