(name string, value string)
| 5779 | } |
| 5780 | |
| 5781 | func requireNetworkPathValue(name string, value string) (string, error) { |
| 5782 | trimmed := strings.TrimSpace(value) |
| 5783 | if trimmed == "" { |
| 5784 | return "", fmt.Errorf("cli: %s is required", name) |
| 5785 | } |
| 5786 | return trimmed, nil |
| 5787 | } |
| 5788 | |
| 5789 | func networkInboxValues(sessionID string) url.Values { |
| 5790 | values := url.Values{} |
no outgoing calls
no test coverage detected