| 16 | } |
| 17 | |
| 18 | type cdUtil struct { |
| 19 | settingsMountPath string |
| 20 | fs boshsys.FileSystem |
| 21 | cdrom Cdrom |
| 22 | logger boshlog.Logger |
| 23 | logTag string |
| 24 | } |
| 25 | |
| 26 | func NewCdUtil(settingsMountPath string, fs boshsys.FileSystem, cdrom Cdrom, logger boshlog.Logger) CDUtil { |
| 27 | return cdUtil{ |
nothing calls this directly
no outgoing calls
no test coverage detected