WithInteractive tells the [Executor] to prompt for missing required variables.
(interactive bool)
| 430 | |
| 431 | // WithInteractive tells the [Executor] to prompt for missing required variables. |
| 432 | func WithInteractive(interactive bool) ExecutorOption { |
| 433 | return &interactiveOption{interactive} |
| 434 | } |
| 435 | |
| 436 | type interactiveOption struct { |
| 437 | interactive bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…