forked from Mirrors/bubbletea
13 lines
130 B
Go
13 lines
130 B
Go
|
// +build windows
|
||
|
|
||
|
package tea
|
||
|
|
||
|
func initTerminal() error {
|
||
|
hideCursor()
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func restoreTerminal() {
|
||
|
showCursor()
|
||
|
}
|