github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/mattn/go-isatty/isatty_appengine.go (about)

     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  }