term_appengine.go 280 B

1234567891011
  1. // +build appengine
  2. package termutil
  3. import "errors"
  4. // terminalWidth returns width of the terminal, which is not supported
  5. // and should always failed on appengine classic which is a sandboxed PaaS.
  6. func TerminalWidth() (int, error) {
  7. return 0, errors.New("Not supported")
  8. }