ReadLine reads a line from standard input.
()
| 79 | |
| 80 | // ReadLine reads a line from standard input. |
| 81 | func (s *shellActionsImpl) ReadLine() string { |
| 82 | line, _ := s.readLine() |
| 83 | return line |
| 84 | } |
| 85 | |
| 86 | func (s *shellActionsImpl) ReadLineErr() (string, error) { |
| 87 | return s.readLine() |