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