WithColor tells the [Executor] whether or not to output using colorized strings.
(color bool)
| 486 | // WithColor tells the [Executor] whether or not to output using colorized |
| 487 | // strings. |
| 488 | func WithColor(color bool) ExecutorOption { |
| 489 | return &colorOption{color} |
| 490 | } |
| 491 | |
| 492 | type colorOption struct { |
| 493 | color bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…