9 lines
174 B
Go
9 lines
174 B
Go
//go:build !darwin && !freebsd && !linux && !windows
|
|
|
|
package tty
|
|
|
|
// IsTerminal is always false on unsupported platforms.
|
|
func IsTerminal(fd uintptr) bool {
|
|
return false
|
|
}
|