()
| 189 | } |
| 190 | |
| 191 | func (c *ContainerContext) RunningFor() string { |
| 192 | createdAt := time.Unix(c.c.Created, 0) |
| 193 | return units.HumanDuration(time.Now().UTC().Sub(createdAt)) + " ago" |
| 194 | } |
| 195 | |
| 196 | func (c *ContainerContext) ExitCode() int { |
| 197 | return c.c.ExitCode |
nothing calls this directly
no outgoing calls
no test coverage detected