David K. Bainbridge | 215e024 | 2017-09-05 23:18:24 -0700 | [diff] [blame] | 1 | // +build appengine |
2 | |||||
3 | package isatty | ||||
4 | |||||
5 | // IsTerminal returns true if the file descriptor is terminal which | ||||
6 | // is always false on on appengine classic which is a sandboxed PaaS. | ||||
7 | func IsTerminal(fd uintptr) bool { | ||||
8 | return false | ||||
9 | } |