Sorter provides a common interface for sorting containers.
| 6 | |
| 7 | // Sorter provides a common interface for sorting containers. |
| 8 | type Sorter interface { |
| 9 | Sort(containers []types.Container, useComposeDependsOn bool) error |
| 10 | } |
| 11 | |
| 12 | // SortByCreated sorts containers in place by creation time. |
| 13 | // |
no outgoing calls
no test coverage detected