8 lines
99 B
Go
8 lines
99 B
Go
//go:build !unix && !windows
|
|
|
|
package shell
|
|
|
|
func IsInteractive(fd uintptr) bool {
|
|
return false
|
|
}
|