13 lines
237 B
Go
13 lines
237 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// +build windows
|
|
|
|
package execclient
|
|
|
|
import "os"
|
|
|
|
func registerSigwinch(chan os.Signal) {
|
|
// NOTE(mitchellh): we should use Windows APIs to poll the window size
|
|
}
|