Gitiles
Code Review
Sign In
gerrit.lfbroadband.org
/
voltha
/
0cd931e3e1ff6fcf2d6edef60e08c1a4d8af27f9
/
.
/
unum
/
vendor
/
github.com
/
mattn
/
go-isatty
/
isatty_appengine.go
blob: 83c588773cf160a564bb561e5584582c99ad34f4 [
file
] [
log
] [
blame
]
// +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
}