package service
func containsInt64(values []int64, target int64) bool {
for _, v := range values {
if v == target {
return true
}
return false