(path string)
| 61 | } |
| 62 | |
| 63 | func normalizedPath(path string) string { |
| 64 | if path != "" && !strings.HasPrefix(path, `/`) { |
| 65 | return `/` + path |
| 66 | } |
| 67 | |
| 68 | return path |
| 69 | } |
| 70 | |
| 71 | func queryStringForRouteSearch(host, guid, path string, port int) string { |
| 72 | args := []string{ |
no outgoing calls
no test coverage detected