(score int)
| 260 | } |
| 261 | |
| 262 | func classifyLikelihood(score int) string { |
| 263 | switch { |
| 264 | case score >= 80: |
| 265 | return "high" |
| 266 | case score >= 55: |
| 267 | return "medium" |
| 268 | default: |
| 269 | return "low" |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | func statusPriority(status int) int { |
| 274 | switch { |
no outgoing calls