mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +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
|
|
}
|