| 1 | package disk |
| 2 | |
| 3 | type linuxBindMounter struct { |
| 4 | delegateMounter Mounter |
| 5 | } |
| 6 | |
| 7 | func NewLinuxBindMounter(delegateMounter Mounter) Mounter { |
| 8 | return linuxBindMounter{delegateMounter} |
nothing calls this directly
no outgoing calls
no test coverage detected