Files
bubbletea/tty_windows.go
2020-01-25 07:15:29 +01:00

13 lines
130 B
Go

// +build windows
package tea
func initTerminal() error {
hideCursor()
return nil
}
func restoreTerminal() {
showCursor()
}