resolve merge conflict

This commit is contained in:
Sahilb315
2025-06-07 23:50:44 +05:30
+10
View File
@@ -0,0 +1,10 @@
package utils
func Contains(slice []string, item string) bool {
for _, s := range slice {
if s == item {
return true
}
}
return false
}