28 lines
407 B
Go
28 lines
407 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build windows
|
|
// +build windows
|
|
|
|
package executor
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func sessionCmdAttr(tty *os.File) *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{}
|
|
}
|
|
|
|
func setTTYSize(w io.Writer, height, width int32) error {
|
|
return fmt.Errorf("unsupported")
|
|
|
|
}
|
|
|
|
func isUnixEIOErr(err error) bool {
|
|
return false
|
|
}
|