...

Source file src/github.com/cli/go-gh/v2/pkg/term/console.go

Documentation: github.com/cli/go-gh/v2/pkg/term

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package term
     5  
     6  import (
     7  	"errors"
     8  	"os"
     9  )
    10  
    11  func enableVirtualTerminalProcessing(f *os.File) error {
    12  	return errors.New("not implemented")
    13  }
    14  
    15  func openTTY() (*os.File, error) {
    16  	return os.Open("/dev/tty")
    17  }
    18  

View as plain text