mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 11:09:17 -07:00
13 lines
130 B
Go
13 lines
130 B
Go
// +build windows
|
|
|
|
package tea
|
|
|
|
func initTerminal() error {
|
|
hideCursor()
|
|
return nil
|
|
}
|
|
|
|
func restoreTerminal() {
|
|
showCursor()
|
|
}
|