(defaultValue string)
| 88 | } |
| 89 | |
| 90 | func (s *shellActionsImpl) ReadLineWithDefault(defaultValue string) string { |
| 91 | s.reader.defaultInput = defaultValue |
| 92 | line, _ := s.readLine() |
| 93 | s.reader.defaultInput = "" |
| 94 | return line |
| 95 | } |
| 96 | |
| 97 | func (s *shellActionsImpl) ReadPassword() string { |
| 98 | return s.reader.readPassword() |