File: isatty_appengine.go

package info (click to toggle)
golang-github-mattn-go-isatty 0.0.1-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 88 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (8)
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
}