mirror of
https://github.com/status-im/matterbridge.git
synced 2025-01-12 15:24:23 +00:00
11 lines
161 B
Go
11 lines
161 B
Go
package wray
|
|
|
|
func contains(target string, slice []string) bool {
|
|
for _, t := range(slice) {
|
|
if t == target {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|