(delegateMounter Mounter)
| 5 | } |
| 6 | |
| 7 | func NewLinuxBindMounter(delegateMounter Mounter) Mounter { |
| 8 | return linuxBindMounter{delegateMounter} |
| 9 | } |
| 10 | |
| 11 | func (m linuxBindMounter) Mount(partitionPath, mountPoint string, mountOptions ...string) error { |
| 12 | return m.MountFilesystem(partitionPath, mountPoint, "", mountOptions...) |
no outgoing calls
no test coverage detected