PosixParser is a ConsoleParser implementation for POSIX environment.
| 13 | |
| 14 | // PosixParser is a ConsoleParser implementation for POSIX environment. |
| 15 | type PosixParser struct { |
| 16 | fd int |
| 17 | origTermios syscall.Termios |
| 18 | } |
| 19 | |
| 20 | // Setup should be called before starting input |
| 21 | func (t *PosixParser) Setup() error { |
nothing calls this directly
no outgoing calls
no test coverage detected