7 lines
129 B
Go
7 lines
129 B
Go
|
package tty
|
||
|
|
||
|
// IsTerminal returns true if the file descriptor is a terminal.
|
||
|
func IsTerminal(fd uintptr) bool {
|
||
|
return false
|
||
|
}
|