Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotAConsole = errors.New("provided file is not a console")
Functions ¶
This section is empty.
Types ¶
type Console ¶
type Console interface { io.Reader io.Writer io.Closer // Resize resizes the console to the provided window size Resize(WinSize) error // ResizeFrom resizes the calling console to the size of the // provided console ResizeFrom(Console) error // SetRaw sets the console in raw mode SetRaw() error // DisableEcho disables echo on the console DisableEcho() error // Reset restores the console to its orignal state Reset() error // Size returns the window size of the console Size() (WinSize, error) }
func ConsoleFromFile ¶
ConsoleFromFile returns a console using the provided file
Click to show internal directories.
Click to hide internal directories.