All checks were successful
continuous-integration/drone/push Build is passing
See #478
11 lines
225 B
Go
11 lines
225 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package tea
|
|
|
|
// listenForResize is not available on windows because windows does not
|
|
// implement syscall.SIGWINCH.
|
|
func (p *Program) listenForResize(done chan struct{}) {
|
|
close(done)
|
|
}
|