| 60 | } |
| 61 | |
| 62 | type CopyCollector struct { |
| 63 | DstDir string |
| 64 | } |
| 65 | |
| 66 | func (cc *CopyCollector) WriteFile(fpath string, fi fs.FileInfo, linkName string, f io.Reader) error { |
| 67 | fdestpath := filepath.Join(cc.DstDir, fpath) |
nothing calls this directly
no outgoing calls
no test coverage detected