Streams is an interface which exposes the standard input and output streams
| 33 | |
| 34 | // Streams is an interface which exposes the standard input and output streams |
| 35 | type Streams interface { |
| 36 | In() *streams.In |
| 37 | Out() *streams.Out |
| 38 | Err() *streams.Out |
| 39 | } |
| 40 | |
| 41 | // Cli represents the docker command line client. |
| 42 | type Cli interface { |