| 43 | } |
| 44 | |
| 45 | type LowLevelClient interface { |
| 46 | ContainersForService(ctx context.Context, projectName string, serviceName string) ([]container.Summary, error) |
| 47 | |
| 48 | Exec(ctx context.Context, containerID string, cmd []string, in io.Reader) error |
| 49 | Untar(ctx context.Context, id string, reader io.ReadCloser) error |
| 50 | } |
| 51 | |
| 52 | type Tar struct { |
| 53 | client LowLevelClient |
no outgoing calls
no test coverage detected