WithAssumeYes tells the [Executor] to assume "yes" for all prompts.
(assumeYes bool)
| 404 | |
| 405 | // WithAssumeYes tells the [Executor] to assume "yes" for all prompts. |
| 406 | func WithAssumeYes(assumeYes bool) ExecutorOption { |
| 407 | return &assumeYesOption{assumeYes} |
| 408 | } |
| 409 | |
| 410 | type assumeYesOption struct { |
| 411 | assumeYes bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…