PackagePool is deduplicated storage of package files on filesystem
| 18 | |
| 19 | // PackagePool is deduplicated storage of package files on filesystem |
| 20 | type PackagePool struct { |
| 21 | sync.Mutex |
| 22 | |
| 23 | rootPath string |
| 24 | supportLegacyPaths bool |
| 25 | } |
| 26 | |
| 27 | // Check interface |
| 28 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected