(args []string)
| 390 | } |
| 391 | |
| 392 | func parseSubscribeChannel(args []string) (string, bool) { |
| 393 | if len(args) != 2 { |
| 394 | return "", false |
| 395 | } |
| 396 | return strings.TrimSpace(args[1]), true |
| 397 | } |
| 398 | |
| 399 | func parsePopCount(args []string) (count int, hasCount bool, ok bool) { |
| 400 | if len(args) != 2 && len(args) != 3 { |
no outgoing calls
no test coverage detected