NewTreeDiff is public access for instantiating a new TreeDiff
(left model.PathSyncSource, right model.PathSyncSource)
| 63 | |
| 64 | // NewTreeDiff is public access for instantiating a new TreeDiff |
| 65 | func NewTreeDiff(left model.PathSyncSource, right model.PathSyncSource) *TreeDiff { |
| 66 | return newTreeDiff(left, right) |
| 67 | } |
| 68 | |
| 69 | // newTreeDiff instantiates a new TreeDiff - If left is a MetadataProvider and right a MetadataReceiver, |
| 70 | // it will set up metadata diff management |
searching dependent graphs…