(id string, imageReference string, size int64, created string)
| 89 | } |
| 90 | |
| 91 | func imageInspect(id string, imageReference string, size int64, created string) image.InspectResponse { |
| 92 | return image.InspectResponse{ |
| 93 | ID: id, |
| 94 | RepoTags: []string{ |
| 95 | "someRepo:someTag", |
| 96 | imageReference, |
| 97 | }, |
| 98 | Size: size, |
| 99 | Created: created, |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func containerDetail(service string, id string, status container.ContainerState, imageName string) container.Summary { |
| 104 | return container.Summary{ |
no outgoing calls
no test coverage detected
searching dependent graphs…