mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
fb3d2ff6fe
* Introduce `dep`, the dependency vendoring tool. Use commits from `go-ethereum@release/1.7` for most of the dependencies. * Update dependencies.
10 lines
241 B
Go
10 lines
241 B
Go
// +build !windows appengine
|
|
|
|
package isatty
|
|
|
|
// 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
|
|
}
|