(prompt string, choices ...interact.Choice)
| 35 | // Interactor hides interact.NewInteraction for testing purposes |
| 36 | type Interactor interface { |
| 37 | NewInteraction(prompt string, choices ...interact.Choice) Resolver |
| 38 | } |
| 39 | |
| 40 | type interactorFunc func(prompt string, choices ...interact.Choice) Resolver |
no outgoing calls
no test coverage detected