(nameVersion, repoUrl, repoDir, checksum string)
| 69 | // RepoCache stores/restores a port's source tree, keyed by name@version + checksum. |
| 70 | type RepoCache interface { |
| 71 | Restore(nameVersion, repoUrl, repoDir, checksum string) (string, error) |
| 72 | Store(nameVersion, repoUrl, repoDir, archiveFile string) (string, error) |
| 73 | } |
| 74 |
no outgoing calls