You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 rivejä
226 B

  1. // +build appengine
  2. package isatty
  3. // IsTerminal returns true if the file descriptor is terminal which
  4. // is always false on on appengine classic which is a sandboxed PaaS.
  5. func IsTerminal(fd uintptr) bool {
  6. return false
  7. }