TUN-3747: Fix logging in Windows

This commit is contained in:
Nuno Diegues
2021-01-13 23:13:23 +00:00
parent a2109e4a78
commit 6852047ef1
29 changed files with 1626 additions and 4 deletions

15
vendor/github.com/mattn/go-isatty/isatty_others.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
// +build appengine js nacl
package isatty
// IsTerminal returns true if the file descriptor is terminal which
// is always false on js and appengine classic which is a sandboxed PaaS.
func IsTerminal(fd uintptr) bool {
return false
}
// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
// terminal. This is also always false on this environment.
func IsCygwinTerminal(fd uintptr) bool {
return false
}