10 lines
166 B
Go
10 lines
166 B
Go
// +build windows
|
|
|
|
package execclient
|
|
|
|
import "os"
|
|
|
|
func registerSigwinch(chan os.Signal) {
|
|
// NOTE(mitchellh): we should use Windows APIs to poll the window size
|
|
}
|