()
| 363 | } |
| 364 | |
| 365 | func (channel *Channel) GetPriority() int64 { |
| 366 | if channel.Priority == nil { |
| 367 | return 0 |
| 368 | } |
| 369 | return *channel.Priority |
| 370 | } |
| 371 | |
| 372 | func (channel *Channel) GetWeight() int { |
| 373 | if channel.Weight == nil { |
no outgoing calls
no test coverage detected