bubbletea/tty_windows.go

13 lines
130 B
Go

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