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