blob: 83c588773cf160a564bb561e5584582c99ad34f4 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// +build appengine
2
3package 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.
7func IsTerminal(fd uintptr) bool {
8 return false
9}