(importPath string)
| 137 | } |
| 138 | |
| 139 | func splitImportPathAndSection(importPath string) (string, string) { |
| 140 | if strings.Contains(importPath, "#") { |
| 141 | parts := strings.SplitN(importPath, "#", 2) |
| 142 | return parts[0], parts[1] |
| 143 | } |
| 144 | return importPath, "" |
| 145 | } |
| 146 | |
| 147 | func resolveSeedImportPath(filePath, importPath, baseDir string, cache *ImportCache, workflowFilePath string, yamlContent string) (string, error) { |
| 148 | fullPath, err := ResolveIncludePath(filePath, baseDir, cache) |
no outgoing calls
no test coverage detected