| 24 | ) |
| 25 | |
| 26 | type Container interface { |
| 27 | Created() string |
| 28 | EntryPoint() string |
| 29 | EntryPointPID() int |
| 30 | ID() string |
| 31 | Image() string |
| 32 | IsToolbx() bool |
| 33 | Labels() map[string]string |
| 34 | Mounts() []string |
| 35 | Name() string |
| 36 | Names() []string |
| 37 | Status() string |
| 38 | } |
| 39 | |
| 40 | type containerInspect struct { |
| 41 | created string |
no outgoing calls
no test coverage detected
searching dependent graphs…