(options []string, text string)
| 134 | } |
| 135 | |
| 136 | func (s *shellActionsImpl) MultiChoice(options []string, text string) int { |
| 137 | choice := s.multiChoice(options, text, nil, false) |
| 138 | return choice[0] |
| 139 | } |
| 140 | func (s *shellActionsImpl) Checklist(options []string, text string, init []int) []int { |
| 141 | return s.multiChoice(options, text, init, true) |
| 142 | } |
nothing calls this directly
no test coverage detected