| 16 | } |
| 17 | |
| 18 | type diskUtil struct { |
| 19 | mounter Mounter |
| 20 | runner boshsys.CmdRunner |
| 21 | fs boshsys.FileSystem |
| 22 | |
| 23 | logTag string |
| 24 | logger boshlog.Logger |
| 25 | } |
| 26 | |
| 27 | func NewUtil(runner boshsys.CmdRunner, mounter Mounter, fs boshsys.FileSystem, logger boshlog.Logger) Util { |
| 28 | return diskUtil{ |
nothing calls this directly
no outgoing calls
no test coverage detected