mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
resolve merge conflict
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package utils
|
||||
|
||||
func Contains(slice []string, item string) bool {
|
||||
for _, s := range slice {
|
||||
if s == item {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user