http urls monitor.

isatty_others.go 250B

1234567891011
  1. // +build !windows
  2. // +build !appengine
  3. package isatty
  4. // IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
  5. // terminal. This is also always false on this environment.
  6. func IsCygwinTerminal(fd uintptr) bool {
  7. return false
  8. }