The glamourous AI coding agent for your favourite terminal 💘
1//go:build windows 2// +build windows 3 4package tea 5 6// listenForResize is not available on windows because windows does not 7// implement syscall.SIGWINCH. 8func (p *Program) listenForResize(done chan struct{}) { 9 close(done) 10}