pb_appengine.go 274 B

1234567891011
  1. // +build appengine
  2. package pb
  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. }