Writer sets the custom destination for where the bytes are sent.
(w io.Writer)
| 77 | |
| 78 | // Writer sets the custom destination for where the bytes are sent. |
| 79 | func Writer(w io.Writer) Option { |
| 80 | return func(opts *Options) { |
| 81 | opts.w = w |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | // IgnoreStderr configures the output to not print any |
| 86 | func IgnoreStderr() Option { |
no outgoing calls
searching dependent graphs…