package utils
func IsStringInSlice(target string, slice []string) bool {
for i := range slice {
if slice[i] == target {
return true
}
return false