(path string)
| 129 | } |
| 130 | |
| 131 | func hasPathParameters(path string) (bool, error) { |
| 132 | pathParams, err := getPathParameterNames(path) |
| 133 | return len(pathParams) > 0, err |
| 134 | } |
| 135 | |
| 136 | func isBasepathParameterized(basepath string) (error, bool) { |
| 137 | hasParams, err := hasPathParameters(basepath) |
no test coverage detected