forked from Mirrors/bubbletea
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) {}
|