chore: remove extra code

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