1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 21:13:30 +00:00
bee/vendor/github.com/mattn/go-isatty/isatty_others.go
2018-10-13 21:45:53 +08:00

11 lines
252 B
Go

// +build !windows
// +build !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
}