ReadLine reads a line from standard input.
()
| 12 | type Actions interface { |
| 13 | // ReadLine reads a line from standard input. |
| 14 | ReadLine() string |
| 15 | // ReadLineErr is ReadLine but returns error as well |
| 16 | ReadLineErr() (string, error) |
| 17 | // ReadLineWithDefault reads a line from standard input with default value. |