1
0
镜像自地址 https://github.com/beego/bee.git 已同步 2025-07-17 18:22:17 +00:00
文件
bee/vendor/github.com/mattn/go-isatty/isatty_others.go
2018-10-13 21:45:53 +08:00

11 行
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
}