WithInputStream sets a custom input stream
(in io.Reader)
| 122 | |
| 123 | // WithInputStream sets a custom input stream |
| 124 | func WithInputStream(in io.Reader) Option { |
| 125 | return func(s *composeService) error { |
| 126 | s.inStream = in |
| 127 | return nil |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | // WithContextInfo sets custom Docker context information |
| 132 | func WithContextInfo(info api.ContextInfo) Option { |
nothing calls this directly
no outgoing calls
no test coverage detected