(change *remote.Change)
| 40 | } |
| 41 | |
| 42 | func parseFileInformation(change *remote.Change) *FileInformation { |
| 43 | return &FileInformation{ |
| 44 | Name: change.Path, |
| 45 | Size: change.Size, |
| 46 | Mtime: change.MtimeUnix, |
| 47 | MtimeNano: change.MtimeUnixNano, |
| 48 | Mode: os.FileMode(change.Mode), |
| 49 | IsDirectory: change.IsDir, |
| 50 | } |
| 51 | } |
no outgoing calls
no test coverage detected