(dir string)
| 11 | ) |
| 12 | |
| 13 | func CheckCloneFileSupported(dir string) (supported bool, err error) { |
| 14 | return false, errors.New(tr.Tr.Get("unsupported platform")) |
| 15 | } |
| 16 | |
| 17 | func CloneFile(writer io.Writer, reader io.Reader) (bool, error) { |
| 18 | return false, nil |