NewFileSystemApplierWithMountManager returns an applier which simply mounts and applies diff onto the mounted filesystem. An optional mount manager can be specified and it will take effect when applying.
(cs content.Provider, mm mount.Manager)
| 43 | // applies diff onto the mounted filesystem. |
| 44 | // An optional mount manager can be specified and it will take effect when applying. |
| 45 | func NewFileSystemApplierWithMountManager(cs content.Provider, mm mount.Manager) diff.Applier { |
| 46 | return &fsApplier{ |
| 47 | store: cs, |
| 48 | mount: mm, |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | type fsApplier struct { |
| 53 | store content.Provider |
no outgoing calls
no test coverage detected
searching dependent graphs…