選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

isatty_appengine.go 226 B

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