(prompt string)
| 60 | } |
| 61 | |
| 62 | func (ui *stdUI) ReadLine(prompt string) (string, error) { |
| 63 | os.Stdout.WriteString(prompt) |
| 64 | return ui.r.ReadString('\n') |
| 65 | } |
| 66 | |
| 67 | func (ui *stdUI) Print(args ...interface{}) { |
| 68 | ui.fprint(os.Stderr, args) |
nothing calls this directly
no outgoing calls
no test coverage detected