(m *mount.Mount)
| 102 | } |
| 103 | |
| 104 | func ensureImageOptions(m *mount.Mount) *mount.ImageOptions { |
| 105 | if m.ImageOptions == nil { |
| 106 | m.ImageOptions = &mount.ImageOptions{} |
| 107 | } |
| 108 | return m.ImageOptions |
| 109 | } |
| 110 | |
| 111 | func ensureBindOptions(m *mount.Mount) *mount.BindOptions { |
| 112 | if m.BindOptions == nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…