mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
15 lines
183 B
Go
15 lines
183 B
Go
// +build windows
|
|
|
|
package boba
|
|
|
|
import "github.com/muesli/termenv"
|
|
|
|
func initTerminal() error {
|
|
termenv.HideCursor()
|
|
return nil
|
|
}
|
|
|
|
func restoreTerminal() {
|
|
termenv.ShowCursor()
|
|
}
|