github.com/stevenmatthewt/agent@v3.5.4+incompatible/process/utils_windows.go (about)

     1  package process
     2  
     3  import (
     4  	"errors"
     5  	"os"
     6  	"os/exec"
     7  )
     8  
     9  func StartPTY(c *exec.Cmd) (*os.File, error) {
    10  	return nil, errors.New("PTY is not supported on Windows")
    11  }