Files
atlantis/server/util.go
Luke Kysow d1bda5ff28 Use cobra and viper for cli/config (#20)
* #15 Use cobra and viper for cli/config

* Run gofmt
2017-06-07 21:20:37 -07:00

12 lines
240 B
Go

package server
// ContainsStr returns true if slice has a value equal to search and false otherwise
func ContainsStr(slice []string, search string) bool {
for _, v := range slice {
if v == search {
return true
}
}
return false
}