(relpath string)
| 97 | } |
| 98 | |
| 99 | func isValidRelpath(relpath string) (error, bool) { |
| 100 | if whiskerr, ok := hasPathPrefix(relpath); !ok { |
| 101 | return whiskerr, false |
| 102 | } |
| 103 | return nil, true |
| 104 | } |
| 105 | |
| 106 | func getPathParameterNames(path string) ([]string, error) { |
| 107 | var pathParameters []string |
no test coverage detected