| 11 | const remoteCacheDir = "remote" |
| 12 | |
| 13 | type CacheNode struct { |
| 14 | *baseNode |
| 15 | source RemoteNode |
| 16 | } |
| 17 | |
| 18 | func NewCacheNode(source RemoteNode, dir string) *CacheNode { |
| 19 | return &CacheNode{ |
nothing calls this directly
no outgoing calls
no test coverage detected