WithMountManager sets the mount manager.
(mm mount.Manager)
| 176 | |
| 177 | // WithMountManager sets the mount manager. |
| 178 | func WithMountManager(mm mount.Manager) ServicesOpt { |
| 179 | return func(s *services) { |
| 180 | s.mountManager = mm |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | // WithInMemoryServices is suitable for cases when there is need to use containerd's client from |
| 185 | // another (in-memory) containerd plugin (such as CRI). |
no outgoing calls
no test coverage detected
searching dependent graphs…