ContainerStore defines a container storage.
| 8 | |
| 9 | // ContainerStore defines a container storage. |
| 10 | type ContainerStore interface { |
| 11 | Get(id string) *Container |
| 12 | List() []*Container |
| 13 | Remove(id string) |
| 14 | Size() int |
| 15 | } |
| 16 | |
| 17 | // inMemoryContainerStore is an in-memory container store backed up by a Docker daemon. |
| 18 | type inMemoryContainerStore struct { |
no outgoing calls
no test coverage detected