mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
10 lines
210 B
Go
10 lines
210 B
Go
// +build windows
|
|
|
|
package tea
|
|
|
|
import "os"
|
|
|
|
// listenForResize is not available on windows because windows does not
|
|
// implement syscall.SIGWINCH.
|
|
func listenForResize(_ *os.File, _ chan Msg, _ chan error) {}
|